diff options
author | Peter Bex <peter@more-magic.net> | 2011-06-09 22:49:39 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2011-06-09 22:49:39 +0200 |
commit | de61dc2d63183f8e75e7348c1050e85dfbf267d2 (patch) | |
tree | dde6d3e14aa0cc8c3dce04f412cad718b48e05f9 | |
parent | 93a8cc9cdcf29af7e299ff2bb72ac0a635b9aa17 (diff) | |
download | smsmatrix-de61dc2d63183f8e75e7348c1050e85dfbf267d2.tar.gz |
Convert Unix timestamps to numbers
-rw-r--r-- | smsmatrix.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smsmatrix.scm b/smsmatrix.scm index 76333dc..fd68fff 100644 --- a/smsmatrix.scm +++ b/smsmatrix.scm @@ -226,7 +226,7 @@ "Sanity check failed: message ID differs from the one requested!" (alist-ref 'id res) message-id)) (values (string->number (alist-ref 'response res)) ; May be omitted - (alist-ref 'timestamp res) + (string->number (alist-ref 'timestamp res)) (alist-ref 'timezone res) status status-text)))) |