You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ok so the DMs are getting loaded but I noticed one problem that if the number of chats are huge, all of them are not getting loaded. For example I have a conversation which has roughly 10,000+ messages in it. The messages JSON is split into multiple files (6 in my case) and currently IGBM is loading only one of these 6 JSON files. I think it's coded to parse only the first JSON it finds per DM.
This is the folder structure of one of the DM threads:
And IGBM only loads the content from message_1.json.
Chronological order of messages is from message_6.json -> message_1.json, so IGBM loads only the latest messages from the backup. Previous messages are skipped.
I think one work around can be to manually merge all JSON files into one JSON file and then load this modified backup into IGBM. What do you think about this?
PS: Merging files is not a big deal for me but I thought I should let you know about the bugs.
Thanks for the wonderful repo.
Cheers!
The text was updated successfully, but these errors were encountered:
Hi again,
Ok so the DMs are getting loaded but I noticed one problem that if the number of chats are huge, all of them are not getting loaded. For example I have a conversation which has roughly 10,000+ messages in it. The messages JSON is split into multiple files (6 in my case) and currently IGBM is loading only one of these 6 JSON files. I think it's coded to parse only the first JSON it finds per DM.
This is the folder structure of one of the DM threads:
And IGBM only loads the content from
message_1.json
.Chronological order of messages is from
message_6.json
->message_1.json
, so IGBM loads only the latest messages from the backup. Previous messages are skipped.I think one work around can be to manually merge all JSON files into one JSON file and then load this modified backup into IGBM. What do you think about this?
PS: Merging files is not a big deal for me but I thought I should let you know about the bugs.
Thanks for the wonderful repo.
Cheers!
The text was updated successfully, but these errors were encountered: