~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to sync/notes.cpp

  • Committer: Teus Benschop
  • Date: 2022-08-30 18:42:32 UTC
  • Revision ID: teusjannette@gmail.com-20220830184232-a5bf5fkj14cqdx01
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
      return "";
95
95
    }
96
96
  }
97
 
  request->session_logic ()->setUsername (user);
 
97
  request->session_logic ()->set_username (user);
98
98
  
99
99
  
100
100
  // Note lower and upper limits.
125
125
      vector <string> bibles = AccessBible::Bibles (webserver_request, user);
126
126
      vector <int> identifiers = database_notes.get_notes_in_range_for_bibles (lowId, highId, bibles, false);
127
127
      string response;
128
 
      for (auto identifier : identifiers) {
 
128
      for (auto id : identifiers) {
129
129
        if (!response.empty ()) response.append ("\n");
130
 
        response.append (convert_to_string (identifier));
 
130
        response.append (convert_to_string (id));
131
131
        response.append ("\n");
132
 
        response.append (database_notes.get_checksum (identifier));
 
132
        response.append (database_notes.get_checksum (id));
133
133
      }
134
134
      return response;
135
135
    }