mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2024-11-23 01:06:17 +00:00
Better error message for max_database_id>max_message_id.
This commit is contained in:
parent
f5a478a454
commit
140dfdfabc
@ -91,7 +91,7 @@ class DownloadManager {
|
|||||||
if (max_database_id == max_message_id) {
|
if (max_database_id == max_message_id) {
|
||||||
System.out.println("No new messages to download.");
|
System.out.println("No new messages to download.");
|
||||||
} else if (max_database_id > max_message_id) {
|
} else if (max_database_id > max_message_id) {
|
||||||
throw new RuntimeException("max_database_id is bigger then max_message_id. This shouldn't be aple to happen. Ever.");
|
throw new RuntimeException("max_database_id is bigger then max_message_id. This shouldn't happen. But the telegram api nonetheless does that sometimes. Just ignore this error, wait a few seconds and then try again.");
|
||||||
} else {
|
} else {
|
||||||
int start_id = max_database_id + 1;
|
int start_id = max_database_id + 1;
|
||||||
int current_start_id = start_id;
|
int current_start_id = start_id;
|
||||||
|
Loading…
Reference in New Issue
Block a user