-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Imported conversations have incorrect timestamps #146
Comments
It looks like another case of already reported bug: #42. |
Oops, I missed it. |
Actually, I'm not sure if it's the same -- this issue is about importing from a .json file using Settings > Import messages, while the others seem to be about automatic import when the app is opened for the first time. (I've edited this issue to clarify.) Edit: The conversation in the linked issue does mention .json files, not sure if it's relevant. |
The problem there wasn't about auto-importing on the first run. They imported messages from backup in another app and had wrong dates on conversation list in Simple/Fossify Messages. I think it's the same problem, just reproduction steps doesn't involve another app. |
I see, thanks. |
Checklist
Affected app version
1.0.1
Affected Android/Custom ROM version
Android 8.1, Android 14
Affected device model
Moto G5 Plus, emulator
How did you install the app?
Built from source
Steps to reproduce the bug
Import messages from a .json backup (Settings > Import messages). Sample file:
(This has three conversations with messages dated 1 Jan 2024.)
Expected behavior
In the main view, the conversations should be sorted by the time of the last message (as usual).
Actual behavior
The timestamps of the conversations are set to the time of the import rather than the time of the last message in the conversation, so the conversations appear in a random order.
Screenshots/Screen recordings
See #88 (comment)
Analysis and workarounds
This is a bug in Android, see Stack Overflow. The suggested workaround is to insert a dummy message and then delete it, because that causes the conversation's date to be recalculated.
One of the answers uses
getContentResolver().delete(Uri.parse("content://sms/conversations/-1"), null, null);
, which works on Android 8.1, however it fails on Android 14 withLooking at the Android source, I think we'd have to actually insert a dummy message. One idea is to insert & delete a dummy message in each conversation. But it might be possible to update all the conversations using a single dummy message -- see the SMS_ALL branch. I'm still investigating.
Update: I found a workaround (comment, rough commit), turns out there is another way to update threads and the app's code already made use of it, but it had a bug that needed to be fixed. I need to do some more work on my patch (make it faster and document it), then I'll open a PR.
Credit
Issue originally reported by @Abcd1234-dot in #88 (comment)
The text was updated successfully, but these errors were encountered: