0
owncast/utils/emojiMigration.go
2022-12-09 19:56:55 -08:00

24 lines
551 B
Go

package utils
import (
"path"
log "github.com/sirupsen/logrus"
)
// MigrateCustomEmojiLocations migrates custom emoji from the old location to the new location.
func MigrateCustomEmojiLocations() {
oldLocation := path.Join("webroot", "img", "emoji")
newLocation := path.Join("data", "emoji")
if !DoesFileExists(oldLocation) {
return
}
log.Println("Moving custom emoji directory from", oldLocation, "to", newLocation)
if err := Move(oldLocation, newLocation); err != nil {
log.Errorln("error moving custom emoji directory", err)
}
}