Skip to content

Commit 046c93d

Browse files
committed
fix: restore cloudsync_network_check_changes_sync
1 parent 4a9816b commit 046c93d

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
@@ -695,6 +695,9 @@ int cloudsync_network_register (sqlite3 *db, char **pzErrMsg, void *ctx) {
695695
rc = dbutils_register_function(db, "cloudsync_network_check_changes", cloudsync_network_check_changes, 0, pzErrMsg, ctx, NULL);
696696
if (rc != SQLITE_OK) return rc;
697697

698+
rc = dbutils_register_function(db, "cloudsync_network_check_changes_sync", cloudsync_network_check_changes_sync, 2, pzErrMsg, ctx, NULL);
699+
if (rc != SQLITE_OK) return rc;
700+
698701
rc = dbutils_register_function(db, "cloudsync_network_reset_check_version", cloudsync_network_reset_check_version, 0, pzErrMsg, ctx, NULL);
699702
if (rc != SQLITE_OK) return rc;
700703

0 commit comments

Comments
 (0)