forked from organicmaps/organicmaps-tmp
[android] Added device name to cloud backup exist dialog
This commit is contained in:
parent
01d2fa5181
commit
6deb56fbfc
1 changed files with 2 additions and 3 deletions
|
@ -316,9 +316,8 @@ public class BookmarkBackupController implements Authorizer.Callback,
|
|||
public void onRestoreRequested(@BookmarkManager.RestoringRequestResult int result,
|
||||
@NonNull String deviceName, long backupTimestampInMs)
|
||||
{
|
||||
//TODO (@alexzatsepin): Output deviceName to the dialog.
|
||||
LOGGER.d(TAG, "onRestoreRequested, result: " + result + ", deviceName = " + deviceName +
|
||||
", backupTimestampInMs = " + backupTimestampInMs);
|
||||
", backupTimestampInMs = " + backupTimestampInMs);
|
||||
Statistics.INSTANCE.trackBmRestoringRequestResult(result);
|
||||
hideRestoringProgressDialog();
|
||||
|
||||
|
@ -330,7 +329,7 @@ public class BookmarkBackupController implements Authorizer.Callback,
|
|||
showRestoringProgressDialog();
|
||||
BookmarkManager.INSTANCE.applyRestoring();
|
||||
};
|
||||
String msg = mContext.getString(R.string.bookmarks_restore_message, backupDate);
|
||||
String msg = mContext.getString(R.string.bookmarks_restore_message, backupDate, deviceName);
|
||||
DialogUtils.showAlertDialog(mContext, R.string.bookmarks_restore_title, msg,
|
||||
R.string.restore, clickListener, R.string.cancel, mRestoreCancelListener);
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue