Skip to content

Commit

Permalink
Issue robert7#171: fix UserStore initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
d1vanov authored and charlescanato committed Oct 24, 2023
1 parent e037122 commit 11699d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/communication/communicationmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ bool CommunicationManager::getUserInfo(User &user) {
QLOG_DEBUG() << "CommunicationManager.getUserInfo(): new UserStore(); host=" << evernoteHost;
QLOG_TRACE() << "token=" << authToken;

userStore = newUserStore(evernoteHost, newRequestContext(authToken, requestTimeout));
userStore = newUserStore(QString("https://") + evernoteHost + QString("/edam/user"), newRequestContext(authToken, requestTimeout));

bool res = true;
try {
Expand Down

0 comments on commit 11699d8

Please sign in to comment.