4
0
mirror of https://github.com/QuasarApp/Patronum.git synced 2025-05-04 19:19:34 +00:00

revert changes

This commit is contained in:
Andrei Yankovich 2024-01-21 15:02:45 +01:00
parent 0a9e41e8d9
commit 14f93cd438

@ -18,19 +18,7 @@ namespace Patronum {
LocalSocket::LocalSocket(const QString &target, QObject *ptr): LocalSocket::LocalSocket(const QString &target, QObject *ptr):
QObject(ptr), ISocketWraper() { QObject(ptr), ISocketWraper() {
#ifdef Q_OS_LINUX
if (QuasarAppUtils::PlatformUtils::isSnap()) {
m_target = "~/P" + target;
} else {
m_target = "P" + target;
}
QuasarAppUtils::Params::log(m_target, QuasarAppUtils::Info);
#else
m_target = "P" + target; m_target = "P" + target;
#endif
} }