fix(emoji): hopefully guard against the crash in #3331

This commit is contained in:
Gabe Kangas 2023-10-21 22:13:13 -07:00
parent b1c0e14161
commit 027f2544e3
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -45,12 +45,16 @@ func UpdateEmojiList(force bool) (time.Time, error) {
if force {
emojiCacheModTime = time.Now()
}
emojiFS := os.DirFS(config.CustomEmojiPath)
if emojiFS == nil {
return modTime, fmt.Errorf("unable to open custom emoji directory")
}
emojiCacheData = make([]models.CustomEmoji, 0)
walkFunction := func(path string, d os.DirEntry, err error) error {
if d.IsDir() {
if d == nil || d.IsDir() {
return nil
}