mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-28 00:50:26 +01:00
Variant -> double in QJsonValue.
This commit is contained in:
parent
90ebdb808d
commit
c64b3df277
@ -82,7 +82,7 @@ TtRssLoginResponse TtRssNetworkFactory::login() {
|
||||
}
|
||||
|
||||
QJsonObject json;
|
||||
json["op"] = QJsonValue(QSL("login"));
|
||||
json["op"] = QSL("login");
|
||||
json["user"] = m_username;
|
||||
json["password"] = m_password;
|
||||
|
||||
@ -110,7 +110,7 @@ TtRssResponse TtRssNetworkFactory::logout() {
|
||||
if (!m_sessionId.isEmpty()) {
|
||||
|
||||
QJsonObject json;
|
||||
json["op"] = "logout";
|
||||
json["op"] = QSL("logout");
|
||||
json["sid"] = m_sessionId;
|
||||
|
||||
QByteArray result_raw;
|
||||
|
Loading…
Reference in New Issue
Block a user