diff --git a/README.md b/README.md index 83d920c..3626eea 100644 --- a/README.md +++ b/README.md @@ -708,14 +708,14 @@ including version, how many users are connected, and ping time. * !mumble - Show info about the configured mumble server - !mumble (set|setserver) [host] ([port]) - Set the configured mumble server -### Twitter +### Nitter Reads Twitter links from room, replaces domain with nitter, removes query parameters and posts link to room. #### Usage -* !twitter enable - enable converting twitter links to nitter links in this room (must be done as room admin) -* !twitter disable - disable converting twitter links to nitter links in this room (must be done as room admin) +* !nitter enable - enable converting twitter links to nitter links in this room (must be done as room admin) +* !nitter disable - disable converting twitter links to nitter links in this room (must be done as room admin) ## Bot setup diff --git a/modules/twitter.py b/modules/nitter.py similarity index 97% rename from modules/twitter.py rename to modules/nitter.py index ea9f37a..5b040a2 100644 --- a/modules/twitter.py +++ b/modules/nitter.py @@ -56,7 +56,7 @@ class MatrixModule(BotModule): args = event.body.split() args.pop(0) if len(args) == 0: - await bot.send_text(room, 'Usage: !twitter ') + await bot.send_text(room, 'Usage: !nitter ') return if len(args) == 1: if args[0] == 'enable':