Identifiers no longer prefixed with url:

This commit is contained in:
Brendan Fattig 2025-05-20 14:09:02 -05:00 committed by Alex Cabal
parent 9c15cd2c1f
commit 718648e514
8 changed files with 56 additions and 56 deletions

View file

@ -1145,7 +1145,7 @@ final class Artwork{
$ebookUrl = HttpInput::Str(POST, 'artwork-ebook-url');
if(isset($ebookUrl)){
try{
$ebook = Ebook::GetByIdentifier('url:' . $ebookUrl);
$ebook = Ebook::GetByIdentifier($ebookUrl);
$this->EbookId = $ebook->EbookId;
}
catch(Exceptions\EbookNotFoundException){