mirror of
https://gitlab.com/chicken-riders/RcGcDw.git
synced 2025-02-23 00:24:09 +00:00
Fixed #75
This commit is contained in:
parent
540afcca19
commit
e32ab0778c
|
@ -442,7 +442,7 @@ def embed_formatter(action, change, parsed_comment, categories):
|
||||||
if action != "suppressed":
|
if action != "suppressed":
|
||||||
if "anon" in change:
|
if "anon" in change:
|
||||||
author_url = "https://{wiki}.gamepedia.com/Special:Contributions/{user}".format(wiki=settings["wiki"],
|
author_url = "https://{wiki}.gamepedia.com/Special:Contributions/{user}".format(wiki=settings["wiki"],
|
||||||
user=change["user"])
|
user=change["user"].replace(" ", "_")) # Replace here needed in case of #75
|
||||||
logging.debug("current user: {} with cache of IPs: {}".format(change["user"], recent_changes.map_ips.keys()))
|
logging.debug("current user: {} with cache of IPs: {}".format(change["user"], recent_changes.map_ips.keys()))
|
||||||
if change["user"] not in list(recent_changes.map_ips.keys()):
|
if change["user"] not in list(recent_changes.map_ips.keys()):
|
||||||
contibs = safe_read(recent_changes.safe_request(
|
contibs = safe_read(recent_changes.safe_request(
|
||||||
|
|
Loading…
Reference in a new issue