Merge pull request #512 from Robbt/fix/disable-podcast-subscription-limit
Made podcast subscription limit depend upon SaaS billing flag
This commit is contained in:
commit
b79af9480b
|
@ -66,7 +66,7 @@ class Application_Service_PodcastService
|
|||
*/
|
||||
public static function createFromFeedUrl($feedUrl)
|
||||
{
|
||||
if (self::PodcastLimitReached()) {
|
||||
if (self::PodcastLimitReached() && LIBRETIME_ENABLE_BILLING) {
|
||||
throw new PodcastLimitReachedException();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue