Skip to content

Commit 4375379

Browse files
author
Bri
committed
Change follow prompt from FastSM to MewProjects
1 parent 90e14b2 commit 4375379

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

mastodon_api.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -333,21 +333,21 @@ def is_valid_instance_url(url):
333333
self._finish_timeline_init()
334334

335335
def _prompt_follow_fastsm(self):
336-
"""Prompt user to follow FastSM account after new Mastodon sign-in."""
336+
"""Prompt user to follow MewProjects account after new Mastodon sign-in."""
337337
result = wx.MessageBox(
338-
"Would you like to follow FastSM@fwoof.space to get updates about the app?",
339-
"Follow FastSM",
338+
"Would you like to follow MewProjects@fwoof.space to get updates about the app?",
339+
"Follow MewProjects",
340340
wx.YES_NO | wx.ICON_QUESTION
341341
)
342342
if result == wx.YES:
343343
try:
344-
# Look up the FastSM account via search
345-
results = self.api.account_search(q="FastSM@fwoof.space", limit=1)
344+
# Look up the MewProjects account via search
345+
results = self.api.account_search(q="MewProjects@fwoof.space", limit=1)
346346
if results and len(results) > 0:
347347
self.api.account_follow(id=results[0].id)
348-
speak.speak("Now following FastSM")
348+
speak.speak("Now following MewProjects")
349349
else:
350-
speak.speak("Could not find FastSM account")
350+
speak.speak("Could not find MewProjects account")
351351
except Exception as e:
352352
speak.speak(f"Could not follow: {e}")
353353

0 commit comments

Comments
 (0)