diff --git a/debian/changelog b/debian/changelog index 36fb7fb3..46cc96e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,9 @@ -NixNote (2.1.0-beta5b) unstable; urgency=low +NixNote (2.1.0) stable; urgency=low * Minor logging improvement in case app is run from wrong directory. * Added sort by "tags" option * Added "Date" mime mail header field (applied patch by https://github.com/the02, Issue #52) * Fixed problem with "Could not parse stylesheet of object XY" warning (invalid default css for searchInputCss) - -- Robert Spiegel Tue, 30 Oct 2018 12:00:00 -0400 - + -- Robert Spiegel Tue, 6 Nov 2018 12:00:00 -0400 NixNote (2.1.0-beta4) unstable; urgency=low * Make the sync and email shortcut key global to all app windows, and add sync and email toolbar buttons to diff --git a/src/communication/communicationmanager.cpp b/src/communication/communicationmanager.cpp index 41c9834a..971a1ba7 100644 --- a/src/communication/communicationmanager.cpp +++ b/src/communication/communicationmanager.cpp @@ -451,6 +451,8 @@ qint32 CommunicationManager::expungeNotebook(Guid guid) { // Upload a note to Evernote qint32 CommunicationManager::uploadNote(Note ¬e, QString token) { + QLOG_DEBUG() << "uploadNote " << note.guid << ", " << note.title; + if (token == "") { token = authToken; }