Browse Source

Fix for unique id.

pull/664/head
Sebastian 5 years ago
parent
commit
3e3485faa9
  1. 2
      backend/src/Squidex.Domain.Apps.Entities/Contents/ContentSchedulerGrain.cs

2
backend/src/Squidex.Domain.Apps.Entities/Contents/ContentSchedulerGrain.cs

@ -94,7 +94,7 @@ namespace Squidex.Domain.Apps.Entities.Contents
} }
catch (DomainObjectNotFoundException) catch (DomainObjectNotFoundException)
{ {
await contentRepository.ResetScheduledAsync(content.Id); await contentRepository.ResetScheduledAsync(content.UniqueId);
} }
catch (Exception ex) catch (Exception ex)
{ {

Loading…
Cancel
Save