mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-22 01:40:07 +01:00
Add improved archive upload progress.
This commit is contained in:
committed by
Greyson Parrelli
parent
981808d074
commit
6d5be0b445
@@ -24,7 +24,22 @@ message ArchiveUploadProgressState {
|
||||
UploadingAttachments = 3;
|
||||
}
|
||||
|
||||
/**
|
||||
* Describes the current phase the backup is in when we are exporting the database
|
||||
* to the temporary file.
|
||||
*/
|
||||
enum BackupPhase {
|
||||
BackupPhaseNone = 0;
|
||||
Account = 1;
|
||||
Recipient = 2;
|
||||
Thread = 3;
|
||||
Call = 4;
|
||||
Sticker = 5;
|
||||
Message = 6;
|
||||
}
|
||||
|
||||
State state = 1;
|
||||
uint64 completedAttachments = 2;
|
||||
uint64 totalAttachments = 3;
|
||||
BackupPhase backupPhase = 4;
|
||||
}
|
||||
Reference in New Issue
Block a user