-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix cloud 4.9 #4289
Fix cloud 4.9 #4289
Conversation
@@ -45,12 +45,12 @@ - (void) initialization | |||
|
|||
- (long)localModifiedTime | |||
{ | |||
return _specificRoads.getLastModifiedTime; | |||
return [_specificRoads getLastModifiedTime] * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not clear - why _specificRoads lastModifiedTime
not changed to milliseconds instead
@@ -64,12 +64,12 @@ - (BOOL)exists | |||
|
|||
- (long)localModifiedTime | |||
{ | |||
return [OAAppSettings.sharedManager getLastGloblalSettingsModifiedTime]; | |||
return [OAAppSettings.sharedManager getLastGloblalSettingsModifiedTime] * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why lastGloblalSettingsModifiedTime
not millis?
@@ -75,12 +75,12 @@ - (NSString *)getPublicName | |||
|
|||
- (long)localModifiedTime | |||
{ | |||
return [_destinationsHelper getMarkersLastModifiedTime]; | |||
return [_destinationsHelper getMarkersLastModifiedTime] * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
markersLastModifiedTime
>> millis?
@@ -84,12 +84,12 @@ - (void)remove | |||
|
|||
- (long)localModifiedTime | |||
{ | |||
return [OAAppSettings.sharedManager getLastProfileSettingsModifiedTime:_appMode]; | |||
return [OAAppSettings.sharedManager getLastProfileSettingsModifiedTime:_appMode] * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lastProfileSettingsModifiedTime
>> millis?
@@ -67,12 +67,12 @@ - (void)renameButton | |||
|
|||
- (long)localModifiedTime | |||
{ | |||
return [_buttonState getLastModifiedTime]; | |||
return [_buttonState getLastModifiedTime] * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lastModifiedTime
>> millis?
@@ -108,7 +108,7 @@ - (long)lastModifiedTime | |||
|
|||
- (void)setLastModifiedTime:(long)lastModifiedTime | |||
{ | |||
_lastModifiedTime = lastModifiedTime; | |||
_lastModifiedTime = lastModifiedTime / 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why lastModifiedTime
not millis?
No description provided.