aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/scrobbler/scrobblercache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/scrobbler/scrobblercache.cpp')
-rw-r--r--src/plugins/General/scrobbler/scrobblercache.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/General/scrobbler/scrobblercache.cpp b/src/plugins/General/scrobbler/scrobblercache.cpp
index 5a4475062..b6b1eec78 100644
--- a/src/plugins/General/scrobbler/scrobblercache.cpp
+++ b/src/plugins/General/scrobbler/scrobblercache.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2013-2016 by Ilya Kotov *
+ * Copyright (C) 2013-2017 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -24,12 +24,14 @@
SongInfo::SongInfo()
{
m_length = 0;
+ m_start_ts = 0;
}
SongInfo::SongInfo(const QMap <Qmmp::MetaData, QString> metadata, qint64 length)
{
m_metadata = metadata;
m_length = length;
+ m_start_ts = 0;
}
SongInfo::SongInfo(const SongInfo &other)