Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

search: replace git.io link with shortcut defined on sopel.chat #2271

Merged
merged 2 commits into from
Apr 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions sopel/modules/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ def duck(bot, trigger):
else:
msg = "No results found for '%s'." % query
if query.count('site:') >= 2:
# This check exists because of issue #1415. The git.io link will take the user there.
# (Better a sopel.chat link, but it's not set up to do that. This is shorter anyway.)
msg += " Try again with at most one 'site:' operator. See https://git.io/fpKtP for why."
# This check exists because of issue #1415.
# The shortcut link will take the user there.
msg += " Try again with at most one 'site:' operator."
msg += " See https://sopel.chat/i/1415 for why."
bot.reply(msg)


Expand All @@ -136,9 +137,10 @@ def bing(bot, trigger):
else:
msg = "No results found for '%s'." % query
if query.count('site:') >= 2:
# This check exists because of issue #1415. The git.io link will take the user there.
# (Better a sopel.chat link, but it's not set up to do that. This is shorter anyway.)
msg += " Try again with at most one 'site:' operator. See https://git.io/fpKtP for why."
# This check exists because of issue #1415.
# The shortcut link will take the user there.
msg += " Try again with at most one 'site:' operator."
msg += " See https://sopel.chat/i/1415 for why."
bot.reply(msg)


Expand All @@ -157,9 +159,10 @@ def search(bot, trigger):
if bu == '-' and du == '-':
msg = "No results found for '%s'." % query
if query.count('site:') >= 2:
# This check exists because of issue #1415. The git.io link will take the user there.
# (Better a sopel.chat link, but it's not set up to do that. This is shorter anyway.)
msg += " Try again with at most one 'site:' operator. See https://git.io/fpKtP for why."
# This check exists because of issue #1415.
# The shortcut link will take the user there.
msg += " Try again with at most one 'site:' operator."
msg += " See https://sopel.chat/i/1415 for why."
bot.reply(msg)
return
elif bu == du:
Expand Down