Hi guys!
I think there’s a typo in the RelativeTime::getApproximateDescription function.
At line 89 I see this:
auto days = (int) inWeeks();
Shouldn’t it be like this instead?
auto days = (int) inDays();
Cheers
Hi guys!
I think there’s a typo in the RelativeTime::getApproximateDescription function.
At line 89 I see this:
auto days = (int) inWeeks();
Shouldn’t it be like this instead?
auto days = (int) inDays();
Cheers
Thanks, the fix is out on develop
Great, thanks Attila!