Skip to content

Commit

Permalink
v0.3.2.6-alpha Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Oct 21, 2023
1 parent 240a2e7 commit bdc2611
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions android/app/src/main/java/com/nostros/classes/Database.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ public Database(String absoluteFilesPath) {
" );");
instance.execSQL("CREATE INDEX nostros_notifications_index ON nostros_notifications(created_at);");
} catch (SQLException e) { }
try {
instance.execSQL("ALTER TABLE nostros_notifications ADD COLUMN zapper_user_id TEXT;");
} catch (SQLException e) { }
}

public void saveEvent(JSONObject data, String userPubKey, String relayUrl) throws JSONException {
Expand Down

0 comments on commit bdc2611

Please sign in to comment.