mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
Fix a stupid missed semicolon
I appear to be suffering from too much Python...
This commit is contained in:
parent
e876df1b23
commit
7a46629d97
@ -49,7 +49,7 @@ void ParserBase::LoadSong(const QString& filename_or_url, qint64 beginning,
|
||||
// Clementine always wants / separators internally. Using
|
||||
// QDir::fromNativeSeparators() only works on the same platform the playlist
|
||||
// was created on/for, using replace() lets playlists work on any platform.
|
||||
filename = filename.replace('\\', '/')
|
||||
filename = filename.replace('\\', '/');
|
||||
|
||||
// Make the path absolute
|
||||
if (!QDir::isAbsolutePath(filename)) {
|
||||
|
Loading…
Reference in New Issue
Block a user