mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 22:55:46 +03:00
Fix bugs
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
a122f64226
commit
656d5c1ca9
3 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ repositories {
|
|||
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
||||
}
|
||||
google()
|
||||
|
||||
|
||||
flatDir {
|
||||
dirs 'libs'
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@ public class PushUtils {
|
|||
remoteOperationResult = unregisterAccountDeviceForProxyOperation.execute(mClient);
|
||||
|
||||
if (remoteOperationResult.isSuccess()) {
|
||||
arbitraryDataProvider.deleteKeyForAccount(account, KEY_PUSH);
|
||||
arbitraryDataProvider.deleteKeyForAccount(account.name, KEY_PUSH);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@ public class PushUtils {
|
|||
remoteOperationResult = unregisterAccountDeviceForProxyOperation.execute(mClient);
|
||||
|
||||
if (remoteOperationResult.isSuccess()) {
|
||||
arbitraryDataProvider.deleteKeyForAccount(account, KEY_PUSH);
|
||||
arbitraryDataProvider.deleteKeyForAccount(account.name, KEY_PUSH);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue