mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-10-30 17:40:47 +03:00
Remove an extra colon from the receipt time
[ci skip]
This commit is contained in:
parent
cd54a3e44f
commit
a7e84b63ac
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ ReceiptItem::dateFormat(const QDateTime &then) const
|
||||||
if (days == 0)
|
if (days == 0)
|
||||||
return QString("Today %1").arg(then.toString("HH:mm"));
|
return QString("Today %1").arg(then.toString("HH:mm"));
|
||||||
else if (days < 2)
|
else if (days < 2)
|
||||||
return QString("Yesterday %1").arg(then.toString("HH::mm"));
|
return QString("Yesterday %1").arg(then.toString("HH:mm"));
|
||||||
else if (days < 365)
|
else if (days < 365)
|
||||||
return then.toString("dd/MM HH:mm");
|
return then.toString("dd/MM HH:mm");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue