M config.ini => config.ini +2 -2
@@ 9,5 9,5 @@ client_secret = `gopass show -o -f gotootramdonvideo/clientsecret`
username = hackersespanol@gmail.com
password = `gopass show -o -f gotootramdonvideo/password`
-[odysee]
-feed_url = https://lbryfeed.melroy.org/playlist/odysee/Hackerñol#1
+[peertube]
+feed_url = https://kolektiva.media/feeds/videos.xml?videoChannelId=917
M main.go => main.go +1 -1
@@ 200,7 200,7 @@ func readConfig() (int, []string, string, string, string, string, string, string
clientSecret, err := parseCredentials(cfg.Section("mastodon").Key("client_secret").String())
username := cfg.Section("mastodon").Key("username").String()
password, err := parseCredentials(cfg.Section("mastodon").Key("password").String())
- feedURL := cfg.Section("odysee").Key("feed_url").String()
+ feedURL := cfg.Section("peertube").Key("feed_url").String()
if err != nil {
log.Fatal(err)
}