Merge pull request #11 from iaguis/fix-save-channel-call

Fix missing parameter rename
This commit is contained in:
Seb Seager 2022-09-05 23:02:13 -04:00 committed by GitHub
commit 9d8b1ee8cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -493,7 +493,7 @@ if __name__ == "__main__":
else:
for ch_id in [x["id"] for x in ch_list]:
ch_hist = channel_history(ch_id, oldest=a.fr, latest=a.to)
save_channel(ch_hist, ch_id, ch_list, users)
save_channel(ch_hist, ch_id, ch_list, user_list)
# elif, since we want to avoid asking for channel_history twice
elif a.r:
for ch_id in [x["id"] for x in channel_list()]: