Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge PR #3587: Global: fix migrateDataDir() not migrating the data d…
…irectory
  • Loading branch information
davidebeatrici committed Jan 25, 2019
2 parents 15f268c + 30ad8ba commit 6e70999
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/mumble/Global.cpp
Expand Up @@ -48,7 +48,6 @@ static void migrateDataDir() {

if (!QFile::exists(newdir) && QFile::exists(olddir)) {
QDir d;
d.mkpath(newdir + QLatin1String("/.."));
if (d.rename(olddir, newdir)) {
qWarning("Migrated application data directory from '%s' to '%s'",
qPrintable(olddir), qPrintable(newdir));
Expand Down

0 comments on commit 6e70999

Please sign in to comment.