Patches cleanup

This commit is contained in:
2018-03-08 19:09:35 +01:00
parent d6d623e151
commit 93e848b2aa
5 changed files with 1 additions and 350 deletions

View File

@ -0,0 +1,19 @@
package main
import (
"github.com/animenotifier/arn"
)
func main() {
defer arn.Node.Close()
for user := range arn.StreamUsers() {
settings := user.Settings()
if !user.IsPro() {
settings.Theme = "light"
}
settings.Save()
}
}