mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
23 lines
551 B
Go
23 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)
|
|
}
|
|
}
|