Skip to content

Commit 848d78c

Browse files
committed
Warning cleanup.
1 parent a6b8b1f commit 848d78c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PowerSync/PowerSync.Common/Client/PowerSyncDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public class PowerSyncDatabase : EventStream<PowerSyncDBEvent>, IPowerSyncDataba
8888
private static readonly int DEFAULT_WATCH_THROTTLE_MS = 30;
8989
private static readonly Regex POWERSYNC_TABLE_MATCH = new Regex(@"(^ps_data__|^ps_data_local__)", RegexOptions.Compiled);
9090

91-
public bool Closed;
91+
public new bool Closed;
9292
public bool Ready;
9393

9494
protected Task isReadyTask;

PowerSync/PowerSync.Common/Client/Sync/Stream/StreamingSyncImplementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ async Task HandleInstruction(Instruction instruction)
615615

616616
notifyCompletedUploads = () =>
617617
{
618-
Task.Run(async () =>
618+
Task.Run(() =>
619619
{
620620
if (controlInvocations != null && !controlInvocations.Closed)
621621
{

0 commit comments

Comments
 (0)