Skip to content

Commit

Permalink
Fix data path.
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk committed Jun 20, 2016
1 parent b0f5b52 commit d5167d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ArchiveModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ QString ArchiveEntry::filePath() const
return path;


return QStandardPaths::writableLocation(QStandardPaths::DataLocation) + name + ".dact";
return QString("%1/%2.dact").arg(QStandardPaths::writableLocation(QStandardPaths::DataLocation), name);
}

bool ArchiveEntry::existsLocally() const
Expand Down

0 comments on commit d5167d3

Please sign in to comment.