Add check box value for notification update query 40/308540/1
authorSukhyungKang <shine.kang@samsung.com>
Wed, 27 Mar 2024 07:28:16 +0000 (16:28 +0900)
committerSukhyungKang <shine.kang@samsung.com>
Wed, 27 Mar 2024 07:28:16 +0000 (16:28 +0900)
Change-Id: I8e180ea11ec62da525afcbcb1a09c8d652032572
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
notification/src/notification_noti.c

index f91eded..7656042 100644 (file)
@@ -567,6 +567,8 @@ static int _create_update_query(sqlite3 *db, notification_h noti, sqlite3_stmt *
        __BIND_INT(db, stmt, idx++, noti->text_input_max_length, ret, out);
        __BIND_INT(db, stmt, idx++, noti->event_flag, ret, out);
        __BIND_INT(db, stmt, idx++, noti->extension_image_size, ret, out);
+       __BIND_INT(db, stmt, idx++, noti->check_box, ret, out);
+       __BIND_INT(db, stmt, idx++, noti->check_box_value, ret, out);
 
 out:
        __free_encoded_data(b_image_path);