From 9e7903867979ebbf485c61cc95b69bd5ed1bfedb Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <PromyLOPh@gmail.com>
Date: Mon, 23 Jun 2008 15:02:12 +0200
Subject: client/wardrobe: Fix scrobbling time issue

---
 src/main.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'src')

diff --git a/src/main.c b/src/main.c
index d198ac3..f08adeb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -56,6 +56,7 @@ PianoStation_t *BarUiSelectStation (PianoHandle_t *ph) {
 		i++;
 	}
 	printf ("Press c to abort.\n");
+
 	if (scanf ("%i", &i) < 1) {
 		return NULL;
 	}
@@ -293,8 +294,6 @@ int main (int argc, char **argv) {
 					}
 				}
 				if (curSong != NULL) {
-					time_t currTime = time (NULL);
-					time_t currGmTime = mktime (gmtime (&currTime));
 					printf ("\"%s\" by \"%s\"%s\n", curSong->title,
 							curSong->artist, (curSong->rating ==
 							PIANO_RATE_LOVE) ? " (Loved)" : "");
@@ -303,7 +302,7 @@ int main (int argc, char **argv) {
 					WardrobeSongInit (&scrobbleSong);
 					scrobbleSong.artist = strdup (curSong->artist);
 					scrobbleSong.title = strdup (curSong->title);
-					scrobbleSong.started = currGmTime;
+					scrobbleSong.started = time (NULL);
 
 					/* FIXME: why do we need to zero everything again? */
 					memset (&player, 0, sizeof (player));
-- 
cgit v1.2.3