fix jessie builds
This commit is contained in:
parent
45e7f7d749
commit
03565b5e71
2
debian/control
vendored
2
debian/control
vendored
@ -105,6 +105,8 @@ Depends: libguh1 (= ${binary:Version}),
|
||||
${shlibs:Depends},
|
||||
${misc:Depends},
|
||||
python,
|
||||
qtconnectivity5-dev,
|
||||
libqt5websockets5-dev,
|
||||
libavahi-client-dev,
|
||||
libavahi-common-dev
|
||||
Description: An open source IoT server - development files
|
||||
|
||||
4
debian/guhd.1
vendored
4
debian/guhd.1
vendored
@ -1,6 +1,6 @@
|
||||
.\" Manpage for guhd.
|
||||
.\" Contact simon.stuerz@guh.guru to correct errors or typos.
|
||||
.TH man 1 "May 2016" "1.5" "guhd man page"
|
||||
.TH man 1 "June 2016" "1.6" "guhd man page"
|
||||
.SH NAME
|
||||
guhd \- An open source IoT (Internet of Things) server
|
||||
.SH SYNOPSIS
|
||||
@ -90,6 +90,8 @@ The plugins config file: \fI/etc/guh/plugins.conf\fR
|
||||
.br
|
||||
The log file: \fI/var/log/guhd.log\fR
|
||||
.br
|
||||
The logrotate config file: \fI/etc/logrotate.d/guhd\fR
|
||||
.br
|
||||
The logging database: \fI/var/log/guhd.sqlite\fR
|
||||
.br
|
||||
The systemd unit file: \fI/etc/systemd/system/guhd.service\fR
|
||||
|
||||
@ -143,7 +143,7 @@ void CloudConnection::onTextMessageReceived(const QString &message)
|
||||
QJsonParseError error;
|
||||
QJsonDocument jsonDoc = QJsonDocument::fromJson(message.toUtf8(), &error);
|
||||
if (error.error != QJsonParseError::NoError) {
|
||||
qCWarning(dcCloud()) << "Could not parse json data from guh" << qUtf8Printable(message.toUtf8()) << error.errorString();
|
||||
qCWarning(dcCloud()) << "Could not parse json data from guh" << message.toUtf8() << error.errorString();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@ -111,8 +111,7 @@ void CloudManager::onConnectionAuthentificationFinished(const bool &authenticate
|
||||
if (authenticated) {
|
||||
m_authenticated = true;
|
||||
m_connectionId = connectionId;
|
||||
qCDebug(dcCloud()) << "Connection ID:" << connectionId.toString();
|
||||
emit authenticatedChanged();
|
||||
qCDebug(dcCloud()) << "Connection id:" << connectionId.toString();
|
||||
|
||||
// Get tunnel connections
|
||||
m_interface->getTunnels();
|
||||
|
||||
Reference in New Issue
Block a user