Version 1.5: Fixed an issue with JDBLabsWebTimeline persist.

This commit is contained in:
Jonathan Bernard 2013-09-22 15:19:44 -05:00
parent 4992d7cac9
commit 4c8d8a9f2d
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#Fri, 13 Sep 2013 09:24:08 -0500 #Sun, 22 Sep 2013 14:58:43 -0500
name=timestamper-lib name=timestamper-lib
version=1.4 version=1.5
lib.local=true lib.local=true
build.number=1 build.number=1

View File

@ -153,7 +153,8 @@ public class JDBLabsWebTimelineSource extends TimelineSource {
requestContentType = JSON requestContentType = JSON
body = entryBody body = entryBody
response.success = { entryHashes.put(fullHash(entry), entry.id ?: 0) } response.success = { resp, json ->
entryHashes.put(fullHash(entry), json?.id ?: 0) }
} }
} }
} }