diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-06-11 10:44:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-06-11 10:44:54 +0000 |
| commit | 50f2091acf6b274bc17e33c7398ea5e4ad4b5eeb (patch) | |
| tree | 536f5fc7fb320aeb73e1d937653add79c63a3517 /src/plugins/General/scrobbler | |
| parent | a2defa39591d8bf71468574e7d5802b7a32bf7ed (diff) | |
| download | qmmp-50f2091acf6b274bc17e33c7398ea5e4ad4b5eeb.tar.gz qmmp-50f2091acf6b274bc17e33c7398ea5e4ad4b5eeb.tar.bz2 qmmp-50f2091acf6b274bc17e33c7398ea5e4ad4b5eeb.zip | |
changed Qmmp::configDir() output: do not add slash at the end of path
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8019 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/scrobbler')
| -rw-r--r-- | src/plugins/General/scrobbler/scrobbler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/scrobbler/scrobbler.cpp b/src/plugins/General/scrobbler/scrobbler.cpp index 2652e3523..468a88bd6 100644 --- a/src/plugins/General/scrobbler/scrobbler.cpp +++ b/src/plugins/General/scrobbler/scrobbler.cpp @@ -90,7 +90,7 @@ Scrobbler::Scrobbler(const QString &scrobblerUrl, const QString &name, QObject * m_scrobblerUrl = scrobblerUrl; m_name = name; m_time = new QTime(); - m_cache = new ScrobblerCache(Qmmp::configDir() +"scrobbler_"+name+".cache"); + m_cache = new ScrobblerCache(Qmmp::configDir() +"/scrobbler_"+name+".cache"); m_ua = QString("qmmp-plugins/%1").arg(Qmmp::strVersion().toLower()).toLatin1(); m_http = new QNetworkAccessManager(this); m_core = SoundCore::instance(); |
