mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-05 04:46:57 +03:00
Fixed date constructor
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
bf95cfb30e
commit
718aca3d06
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class JsonCatPack : public BasicCatPack {
|
|||
auto sp = d.split("-");
|
||||
day = sp[0].toInt();
|
||||
if (sp.length() >= 2)
|
||||
mounth = sp[1].length();
|
||||
mounth = sp[1].toInt();
|
||||
}
|
||||
int mounth;
|
||||
int day;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue