diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-02-23 19:08:35 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-20 14:56:33 -0700 |
commit | dc5402349e8c65945d46f1539fd92823a05a391c (patch) | |
tree | cbb710514c1bbb52b740c904ee355248648bf6fd /launcher/FileSystem.cpp | |
parent | ae289c923c4f896dca7e6696eef7ca35b10be9bf (diff) | |
download | PrismLauncher-dc5402349e8c65945d46f1539fd92823a05a391c.tar.gz PrismLauncher-dc5402349e8c65945d46f1539fd92823a05a391c.tar.bz2 PrismLauncher-dc5402349e8c65945d46f1539fd92823a05a391c.zip |
refactor: use UUID toString mode
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/FileSystem.cpp')
-rw-r--r-- | launcher/FileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index 2bd0cf52..714af4a0 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -442,7 +442,7 @@ void create_link::runPrivileged(const QString& offset) make_link_list(offset); - QString serverName = BuildConfig.LAUNCHER_APP_BINARY_NAME + "_filelink_server" + StringUtils::getRandomAlphaNumeric(8); + QString serverName = BuildConfig.LAUNCHER_APP_BINARY_NAME + "_filelink_server" + StringUtils::getRandomAlphaNumeric(); connect(&m_linkServer, &QLocalServer::newConnection, this, [&](){ |