Removed unneeded empty arguments already provided by defaults

This commit is contained in:
diracsbracket 2021-04-27 04:16:36 -04:00 committed by John Maguire
parent 444f1e2e69
commit 66a34a906a
1 changed files with 1 additions and 1 deletions

View File

@ -672,6 +672,6 @@ bool SongLoader::LoadRemotePlaylist(const QUrl& url) {
qLog(Debug) << "Loading" << url.toString() << "with MIME" << mime_type;
songs_ = parser->Load(data_reply, QString(), QString());
songs_ = parser->Load(data_reply);
return true;
}