diff options
| author | Ben Busby <contact@benbusby.com> | 2024-01-08 11:32:59 -0700 |
|---|---|---|
| committer | Ben Busby <contact@benbusby.com> | 2024-01-08 11:32:59 -0700 |
| commit | 4f60a39d7f6aded5a7ccd5f003f77ed634415a90 (patch) | |
| tree | 07a5bc563ff2505255f7ae5f37e768067e03137e /lib/farside.ex | |
| parent | 0830ee5a3dbd968f5f7d364e7851c412b85a4aef (diff) | |
| download | farside-4f60a39d7f6aded5a7ccd5f003f77ed634415a90.tar.gz | |
Replace libreddit w/ redlib, remove teddit
Teddit is no longer maintained
Libreddit has been forked to redlib, which seems to be actively trying
to work around the changes to Reddit's API.
Libreddit instances are now a mirror of redlib instances for the time
being.
Diffstat (limited to 'lib/farside.ex')
| -rw-r--r-- | lib/farside.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/farside.ex b/lib/farside.ex index f31920a..fa74a80 100644 --- a/lib/farside.ex +++ b/lib/farside.ex @@ -7,7 +7,7 @@ defmodule Farside do # This enables Farside to redirect with links such as: # farside.link/https://www.youtube.com/watch?v=dQw4w9WgXcQ @youtube_regex ~r/youtu(.be|be.com)|invidious|piped/ - @reddit_regex ~r/reddit.com|libreddit|teddit/ + @reddit_regex ~r/reddit.com|libreddit|redlib/ @instagram_regex ~r/instagram.com|bibliogram/ @twitter_regex ~r/twitter.com|nitter/ @wikipedia_regex ~r/wikipedia.org|wikiless/ @@ -22,7 +22,7 @@ defmodule Farside do @parent_services %{ @youtube_regex => ["invidious", "piped"], - @reddit_regex => ["libreddit", "teddit"], + @reddit_regex => ["libreddit", "redlib"], @instagram_regex => ["bibliogram"], @twitter_regex => ["nitter"], @wikipedia_regex => ["wikiless"], |
