mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 02:36:42 +02:00
chore: update CI to v4.6.3 + all php and js dependencies
This commit is contained in:
parent
96b2df15b0
commit
346c00e7b5
206 changed files with 6239 additions and 5336 deletions
|
|
@ -78,12 +78,14 @@ class Publish extends BaseCommand
|
|||
}
|
||||
|
||||
// set podcast feed as having been pushed onto hubs
|
||||
(new PodcastModel())->update($podcast->id, [
|
||||
'is_published_on_hubs' => 1,
|
||||
]);
|
||||
new PodcastModel()
|
||||
->update($podcast->id, [
|
||||
'is_published_on_hubs' => 1,
|
||||
]);
|
||||
|
||||
// set newly published episodes as pushed onto hubs
|
||||
(new EpisodeModel())->set('is_published_on_hubs', true)
|
||||
new EpisodeModel()
|
||||
->set('is_published_on_hubs', true)
|
||||
->where([
|
||||
'podcast_id' => $podcast->id,
|
||||
'is_published_on_hubs' => false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue