global: add null safety checks

This commit is contained in:
Abdullah Atta
2025-10-14 21:15:51 +05:00
parent be432dfd24
commit 6e35edb715
109 changed files with 452 additions and 590 deletions
+2 -1
View File
@@ -7,7 +7,7 @@ namespace Notesnook.API.Jobs
{
public class DeviceCleanupJob : IJob
{
public async Task Execute(IJobExecutionContext context)
public Task Execute(IJobExecutionContext context)
{
ParallelOptions parallelOptions = new()
{
@@ -59,6 +59,7 @@ namespace Notesnook.API.Jobs
}
}
});
return Task.CompletedTask;
}
}
}