Skip to content

Commit

Permalink
Merge branch 'development' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
orkit committed Sep 6, 2024
2 parents 8cf9c6d + b563b42 commit bf1755c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Services/Notify/PlayStoreNotify.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ public function sendSuccess(string $type)

public function sendFail(string $type)
{
/***
* Depricated
*/

// type: manual
$this->presentation
->makeHidden('id')
Expand Down
5 changes: 5 additions & 0 deletions app/Services/Upload/Metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ public function create(ManualPresentation $presentation)
'playAudio' => (bool)$stream->audio
]);

//Check and update the structure of old format sources
if(empty($stream->name)) {
$stream->name = 'main';
}

$buildsource[$stream->name] = $build;

}
Expand Down

0 comments on commit bf1755c

Please sign in to comment.