Skip to content

Commit

Permalink
fix: inavlid path to rhvoice data
Browse files Browse the repository at this point in the history
  • Loading branch information
mkiol committed Sep 25, 2023
1 parent dbd311a commit 9820bd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/module_tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ QString path_in_share_dir(const QString& path) {
}

QString module_file(const QString& name) {
return path_in_share_dir(QStringLiteral("%2.tar.xz").arg(name));
return path_in_share_dir(QStringLiteral("%1/%2.tar.xz")
.arg(QStringLiteral(APP_BINARY_ID), name));
}

bool unpack_module(const QString& name) {
Expand Down

0 comments on commit 9820bd7

Please sign in to comment.