[ARDAudiothekBridge] add duration to feed items (#3854)

This commit is contained in:
xduugu 2023-12-23 08:43:01 +00:00 committed by GitHub
parent ea2b4d7506
commit 98dafb61ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -125,6 +125,10 @@ class ARDAudiothekBridge extends BridgeAbstract
$item['categories'] = [$category];
}
$item['itunes'] = [
'duration' => $audio->duration,
];
$this->items[] = $item;
}
}