Skip to content

Commit 9e1dfb4

Browse files
committed
Merge branch 'main' into network_v2
2 parents 28b3cc4 + 046c93d commit 9e1dfb4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/network.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,9 @@ int cloudsync_network_register (sqlite3 *db, char **pzErrMsg, void *ctx) {
729729
rc = dbutils_register_function(db, "cloudsync_network_check_changes", cloudsync_network_check_changes, 0, pzErrMsg, ctx, NULL);
730730
if (rc != SQLITE_OK) return rc;
731731

732+
rc = dbutils_register_function(db, "cloudsync_network_check_changes_sync", cloudsync_network_check_changes_sync, 2, pzErrMsg, ctx, NULL);
733+
if (rc != SQLITE_OK) return rc;
734+
732735
rc = dbutils_register_function(db, "cloudsync_network_reset_check_version", cloudsync_network_reset_check_version, 0, pzErrMsg, ctx, NULL);
733736
if (rc != SQLITE_OK) return rc;
734737

0 commit comments

Comments
 (0)