Skip to content

Commit

Permalink
+changelog-ignore:
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Aug 9, 2024
1 parent d843550 commit 66349a6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public async Task HandleAsync(ContentTypeSavedNotification notification, Cancell

foreach (var item in notification.SavedEntities)
{
await contentTypeOrganiser.OrganiseTypeAsync(item);
await contentTypeOrganiser.OrganiseAsync(item);
}
}

Expand All @@ -58,7 +58,7 @@ public async Task HandleAsync(MediaTypeSavedNotification notification, Cancellat

foreach (var item in notification.SavedEntities)
{
await mediaTypeOrganiser.OrganiseTypeAsync(item);
await mediaTypeOrganiser.OrganiseAsync(item);
}
}

Expand All @@ -71,7 +71,7 @@ public async Task HandleAsync(MemberTypeSavedNotification notification, Cancella

foreach (var item in notification.SavedEntities)
{
await memberTypeOrganiser.OrganiseTypeAsync(item);
await memberTypeOrganiser.OrganiseAsync(item);
}
}
}

0 comments on commit 66349a6

Please sign in to comment.