summaryrefslogtreecommitdiffstats
path: root/app/auto_posts.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/auto_posts.go')
-rw-r--r--app/auto_posts.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/auto_posts.go b/app/auto_posts.go
index 07d260846..6a2a15908 100644
--- a/app/auto_posts.go
+++ b/app/auto_posts.go
@@ -41,7 +41,7 @@ func NewAutoPostCreator(client *model.Client, channelid string) *AutoPostCreator
func (cfg *AutoPostCreator) UploadTestFile() ([]string, bool) {
filename := cfg.ImageFilenames[utils.RandIntFromRange(utils.Range{Begin: 0, End: len(cfg.ImageFilenames) - 1})]
- path := utils.FindDir("web/static/images")
+ path, _ := utils.FindDir("web/static/images")
file, err := os.Open(path + "/" + filename)
defer file.Close()