diff --git a/patches/user-privacy-location/user-privacy-location.go b/patches/user-privacy-location/user-privacy-location.go new file mode 100644 index 00000000..45451c5b --- /dev/null +++ b/patches/user-privacy-location/user-privacy-location.go @@ -0,0 +1,19 @@ +package main + +import ( + "github.com/animenotifier/arn" + "github.com/fatih/color" +) + +func main() { + color.Yellow("Resetting location privacy to enabled") + + defer color.Green("Finished.") + defer arn.Node.Close() + + for user := range arn.StreamUsers() { + settings := user.Settings() + settings.Privacy.ShowLocation = true + settings.Save() + } +}