Don't check for active giveaways

The old API is no more, so we can't check for active giveaway. Simply disable it for now.
chrusher-playlist-thumbnails
Hubbe 2 weeks ago
parent f2a6420634
commit 3ba01dda11

@ -99,7 +99,7 @@ def main(conf_file, message_log_file, name=socket.gethostname()):
increase = None if total is None else msg["d"] - total increase = None if total is None else msg["d"] - total
log["increase"] = increase log["increase"] = increase
increase_str = "" if increase is None else " (+${:.2f})".format(msg["d"] - total) increase_str = "" if increase is None else " (+${:.2f})".format(msg["d"] - total)
giveaway = get_giveaway() giveaway = None
entries_str = "" entries_str = ""
if increase is not None and giveaway is not None: if increase is not None and giveaway is not None:
amount = giveaway["amount"] amount = giveaway["amount"]

Loading…
Cancel
Save