mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-09 13:20:28 +03:00
#1111 - Fix wrong muted time
This commit is contained in:
parent
acff2ae390
commit
23b6aa4c2b
1 changed files with 1 additions and 1 deletions
|
@ -499,7 +499,7 @@ public class MastodonHelper {
|
|||
accountId = account.id;
|
||||
acct = account.acct;
|
||||
}
|
||||
accountsVM.mute(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, accountId, true, (int) delayToPass * 1000)
|
||||
accountsVM.mute(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, accountId, true, (int) delayToPass / 1000)
|
||||
.observe((LifecycleOwner) context, relationShip -> {
|
||||
if (listener != null) {
|
||||
listener.onTimedMute(relationShip);
|
||||
|
|
Loading…
Reference in a new issue