forked from mirror/monocles_chat_clean
Fix up merge error
This commit is contained in:
parent
76bbfadd94
commit
77ae0a9283
2 changed files with 4 additions and 4 deletions
|
@ -363,12 +363,12 @@ public class DatabaseBackend extends SQLiteOpenHelper {
|
|||
db.execSQL("PRAGMA monocles.user_version = 11");
|
||||
}
|
||||
|
||||
if(cheogramVersion < 12) {
|
||||
if(monoclesVersion < 12) {
|
||||
db.execSQL(
|
||||
"ALTER TABLE cheogram." + Message.TABLENAME + " " +
|
||||
"ALTER TABLE monocles." + Message.TABLENAME + " " +
|
||||
"ADD COLUMN notificationDismissed NUMBER DEFAULT 0"
|
||||
);
|
||||
db.execSQL("PRAGMA cheogram.user_version = 12");
|
||||
db.execSQL("PRAGMA monocles.user_version = 12");
|
||||
}
|
||||
|
||||
db.setTransactionSuccessful();
|
||||
|
|
|
@ -1451,6 +1451,7 @@ public class ConversationFragment extends XmppFragment
|
|||
Log.d(Config.LOGTAG, "lost take photo uri. unable to to attach");
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ATTACHMENT_CHOICE_EDIT_PHOTO:
|
||||
final Uri editedUriPhoto = data.getParcelableExtra(EditActivity.KEY_EDITED_URI);
|
||||
if (editedUriPhoto != null) {
|
||||
|
@ -1460,7 +1461,6 @@ public class ConversationFragment extends XmppFragment
|
|||
Log.d(Config.LOGTAG, "lost take photo uri. unable to to attach");
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ATTACHMENT_CHOICE_CHOOSE_FILE:
|
||||
case ATTACHMENT_CHOICE_RECORD_VIDEO:
|
||||
case ATTACHMENT_CHOICE_RECORD_VOICE:
|
||||
|
|
Loading…
Reference in a new issue