disk6969

TAndroid bug

Jul 31st, 2025 (edited)
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.13 KB | None | 0 0
  1. === network logs ===
  2. // since msgId of second one is earlier by 4 nanoseconds it's sent out of order
  3. // (msgId= in MTProto logs)
  4. 7-31 12:28:27.870 debug: not found request to parse constructor 0x78d4dec1
  5.                                 //πŸ‘‰ (0x78d4dec1: UpdateShort)
  6. 7-31 12:28:27.870 debug: connection(0xb40000769cc0b220, account2, dc2, type 1) received unparsed packet on 0x0
  7. 7-31 12:28:27.876 debug: not found request to parse constructor 0x74ae4240
  8.                                 //πŸ‘‰ (0x74ae4240: Updates)
  9. 7-31 12:28:27.876 debug: connection(0xb40000769cc0b220, account2, dc2, type 1) received unparsed packet on 0x0
  10. === === === === ===
  11.  
  12. === MTProto logs ===
  13. // trimmed useless stuff
  14. 31_07_2025_12_28_27.873 msgId=7533221919617099781 account=2
  15. receive message -> TL_updateShort : {"_":"updateShort", "date":1753964906,"pts":0,"pts_count":0,"seq":0,"seq_start":0,"update":{"_":"updateDeleteChannelMessages","channel_id":1341570295,"messages":[πŸ‘‰ 2157574], "pts":πŸ‘‰3080856,"pts_count":1},"updates":[],"user_id":0,"users":[],"via_bot_id":0}
  16.  
  17. 31_07_2025_12_28_27.889 msgId=7533221919617099777 account=2
  18. receive message -> TL_updates : {"_":"updates","date":1753964907,"pts":0,"pts_count":0,"seq":0,"seq_start":0,"updates":[{"_":"updateNewChannelMessage","message":{"_":"message","date":1753964907, "id":πŸ‘‰ 2157574},"pts":πŸ‘‰3080855,"pts_count":1}]}
  19. === === === === ===
  20.  
  21. === java logs ===
  22. 31_07_2025_12_28_05.454 D/tmessages: received channel difference with  pts = πŸ‘‰ 3080854 channelId = 1341570295
  23. // last known PTS before all of it
  24. ...skip 7 lines
  25.  
  26. 31_07_2025_12_28_27.874 D/tmessages: java received org.telegram.tgnet.TLRPC$TL_πŸ‘‰updateShort@46a9730
  27. 31_07_2025_12_28_27.874 D/tmessages: process update TL_updateDeleteChannelMessages
  28. 31_07_2025_12_28_27.874 D/tmessages: org.telegram.tgnet.TLRPC$TL_updateDeleteChannelMessages@a932fa9 channelId = 1341570295
  29. 31_07_2025_12_28_27.889 D/tmessages: java received org.telegram.tgnet.TLRPC$TL_πŸ‘‰updates@cfcb4f4
  30. 31_07_2025_12_28_27.889 D/tmessages: process update TL_updateNewChannelMessage
  31. 31_07_2025_12_28_27.889 D/tmessages: org.telegram.tgnet.TLRPC$TL_updateNewChannelMessage@f73941d channelId = 1341570295 message_id = πŸ‘‰ 2157574
  32. 31_07_2025_12_28_27.892 D/tmessages: update messageRead currentMaxId = 2157573 dialogId = -1341570295
  33. 31_07_2025_12_28_27.903 D/tmessages: NotificationsController: processNewMessages msgs.size()=1 isLast=true isFcm=false)
  34. 31_07_2025_12_28_27.905 D/tmessages: ChatActivity didReceiveNewMessages start
  35. 31_07_2025_12_28_27.905 D/tmessages: processNewMessages 1 messages
  36. 31_07_2025_12_28_27.906 D/tmessages: processNewMessages 0 our of 1
  37. 31_07_2025_12_28_27.906 D/tmessages: received new messages 1 in dialog -1341570295
  38. ...skip 40 lines
  39. // timeout of GetChannelDifference expired (~ 30 seconds), this is when messages disappear usually from UI
  40. 31_07_2025_12_28_36.106 D/tmessages: start getChannelDifference with pts = 3080855 channelId = 1341570295
  41. // So failed to gap since the local PTS was saved wrong 3080855, ignoring delete's 56 pts
  42. 31_07_2025_12_28_36.280 D/tmessages: received channel difference with pts = πŸ‘‰ 3080856 channelId = 1341570295
  43. === === === === ===
Advertisement
Add Comment
Please, Sign In to add comment