Browse Source
Merge pull request #326 from Avd6977/patch-2
Pending should be false when changing status
pull/329/head
Sebastian Stehle
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/Squidex.Domain.Apps.Entities/Contents/State/ContentState.cs
|
|
@ -86,6 +86,7 @@ namespace Squidex.Domain.Apps.Entities.Contents.State |
|
|
protected void On(ContentStatusChanged @event) |
|
|
protected void On(ContentStatusChanged @event) |
|
|
{ |
|
|
{ |
|
|
ScheduleJob = null; |
|
|
ScheduleJob = null; |
|
|
|
|
|
IsPending = false; |
|
|
|
|
|
|
|
|
Status = @event.Status; |
|
|
Status = @event.Status; |
|
|
|
|
|
|
|
|
|