Merge lp:~mzanetti/reminders-app/fix-fetching-notes into lp:reminders-app

Proposed by Michael Zanetti
Status: Merged
Approved by: David Planella
Approved revision: 57
Merged at revision: 56
Proposed branch: lp:~mzanetti/reminders-app/fix-fetching-notes
Merge into: lp:reminders-app
Diff against target: 28 lines (+4/-3)
2 files modified
debian/changelog (+3/-2)
src/plugin/Evernote/notesstore.cpp (+1/-1)
To merge this branch: bzr merge lp:~mzanetti/reminders-app/fix-fetching-notes
Reviewer Review Type Date Requested Status
David Planella Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+205372@code.launchpad.net

Commit message

fix fetching notes content.

To post a comment you must log in.
Revision history for this message
David Planella (dpm) wrote :

That definitely fixes it, thanks!

review: Approve
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
David Planella (dpm) wrote :

I've talked to balloons about the test failure and he's talked to fginther in turn.

The way they recommend to fix this is to bump the version of the package in debian/changelog to 0.4 (higher than the 0.3 version in the PPA) to avoid the conflict with the 0.3 package in the PPA.

review: Needs Fixing
57. By Michael Zanetti

bump changelog

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
David Planella (dpm) wrote :

LGTM, thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2014-01-19 13:59:12 +0000
3+++ debian/changelog 2014-02-07 18:23:31 +0000
4@@ -1,8 +1,9 @@
5-reminders-app (0.2ubuntu1) UNRELEASED; urgency=medium
6+reminders-app (0.4) trusty; urgency=medium
7
8+ [ Sergio Schvezov ]
9 * Adding common cmake.
10
11- -- Sergio Schvezov <sergio.schvezov@canonical.com> Sun, 19 Jan 2014 10:30:23 -0300
12+ -- Michael Zanetti <michael.zanetti@canonical.com> Fri, 07 Feb 2014 19:22:48 +0100
13
14 reminders-app (0.2) saucy; urgency=low
15
16
17=== modified file 'src/plugin/Evernote/notesstore.cpp'
18--- src/plugin/Evernote/notesstore.cpp 2014-02-05 20:37:05 +0000
19+++ src/plugin/Evernote/notesstore.cpp 2014-02-07 18:23:31 +0000
20@@ -237,7 +237,7 @@
21 }
22
23 Note *note = m_notesHash.value(QString::fromStdString(result.guid));
24- if (note) {
25+ if (!note) {
26 qWarning() << "can't find note for this update... ignoring...";
27 return;
28 }

Subscribers

People subscribed via source and target branches