You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After looking at issue #22, I noticed that iQuassel currently pre-formats the version date instead of reporting the date/time in seconds since the Unix epoch:
iQuassel should instead send the version date as the seconds since the Unix epoch, wrapped as a string for backwards compatibility. For example, Quassel desktop does this:
In brief
ClientDate
field, seconds as a string for backwards compatibilityDetails
After looking at issue #22, I noticed that iQuassel currently pre-formats the version date instead of reporting the date/time in seconds since the Unix epoch:
QuasselCoreConnection.m
iQuassel should instead send the version date as the seconds since the Unix epoch, wrapped as a string for backwards compatibility. For example, Quassel desktop does this:
src/common/quassel.cpp
// Set to Unix epoch, wrapped as a string for backwards-compatibility buildInfo.commitDate = QString::number(GIT_COMMIT_DATE);
Quasseldroid also transmits the ClientDate as a string of seconds since the Unix epoch.
Quassel desktop v0.13 and newer will automatically format this using the date/time locale of the current system, as per the screenshots in the upstream PR.
The text was updated successfully, but these errors were encountered: