chore: Follow up voice message localization
This commit is contained in:
parent
c52209ccdd
commit
647ed04901
1 changed files with 1 additions and 1 deletions
|
|
@ -358,6 +358,6 @@ class MatrixLocals extends MatrixLocalizations {
|
||||||
senderName,
|
senderName,
|
||||||
duration == null
|
duration == null
|
||||||
? ''
|
? ''
|
||||||
: '${duration.inMinutes}:${duration.inSeconds % 60}',
|
: '${duration.inMinutes.toString().padLeft(2, '0')}:${(duration.inSeconds % 60).toString().padLeft(2, '0')}',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue