This repository was archived by the owner on Mar 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ ExportData AccountManagerPrivate::deserializeExportData(const QJsonObject &impor
208208 // cant use json serializer because of HeaderHash and config ptr
209209 data.trusted = importData[QStringLiteral (" trusted" )].toBool ();
210210 data.pNonce = QByteArray::fromBase64 (importData[QStringLiteral (" nonce" )].toString ().toUtf8 ());
211- data.partnerId = QUuid::fromString (importData[QStringLiteral (" partner" )].toString ());
211+ data.partnerId = QUuid (importData[QStringLiteral (" partner" )].toString ());
212212 data.scheme = importData[QStringLiteral (" scheme" )].toString ().toUtf8 ();
213213 data.cmac = QByteArray::fromBase64 (importData[QStringLiteral (" cmac" )].toString ().toUtf8 ());
214214
Original file line number Diff line number Diff line change @@ -41,11 +41,9 @@ SOURCES += \
4141DISTFILES += \
4242 docker_setup.conf \
4343 docker-compose.yaml \
44- dockerbuild/makedocker.sh \
45- dockerbuild/Dockerfile \
44+ ../../Dockerfile \
4645 dockerbuild/env_start.sh \
4746 dockerbuild/install.sh \
48- dockerbuild/qt-installer-script.qs \
4947 qdsapp.service \
5048 qdsapp.socket \
5149 qdsapp.conf
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ mv dockerbuild/env_start.sh /usr/bin/
3333
3434# remove unused stuff
3535apt-get -qq purge $BUILD_DEPS
36+ apt-get -qq autoremove
3637rm -rf /tmp/*
3738rm -rf /var/lib/apt/lists/*
3839rm -rf $HOME /.cache/qpmx
You can’t perform that action at this time.
0 commit comments