Skip to content
Snippets Groups Projects
Commit 50dc357b authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fixed tests

parent 343aab7c
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ func track(session *storage.Session, ourId *id.ID, stop *stoppable.Single) { ...@@ -63,7 +63,7 @@ func track(session *storage.Session, ourId *id.ID, stop *stoppable.Single) {
now := netTime.Now() now := netTime.Now()
//hack for inconsistent time on android //hack for inconsistent time on android
if lastCheck.Sub(now) <=0{ if now.Sub(lastCheck) <=0{
now = lastCheck.Add(time.Nanosecond) now = lastCheck.Add(time.Nanosecond)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment