From 5a2ffa73198d9f4ce3d392a1495e201e058cf80d Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 23 Jun 2015 18:11:43 -0700 Subject: [PATCH] fix bug in offline logging where file saved as NULL --- wakatime/offlinequeue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wakatime/offlinequeue.py b/wakatime/offlinequeue.py index ebbc2d3..19e55a0 100644 --- a/wakatime/offlinequeue.py +++ b/wakatime/offlinequeue.py @@ -50,7 +50,7 @@ class Queue(object): try: conn, c = self.connect() heartbeat = { - 'file': data.get('file'), + 'file': data.get('entity'), 'time': data.get('time'), 'project': data.get('project'), 'branch': data.get('branch'),