fixed None type error on xplexproduct
This commit is contained in:
parent
bf4cd556d1
commit
66ebe05908
@ -138,8 +138,7 @@ async def fake_user_json_or_signin(request: Request, _=host_required([Hosts.CLIE
|
||||
"plan": "monthly",
|
||||
"paymentNotificationId": "1234567",
|
||||
"canUpgrade": True,
|
||||
"features": PLEXAMP_FEATURES if "plexamp" in request.headers.get(
|
||||
"X-Plex-Product").lower() else FEATURES_DICT
|
||||
"features": PLEXAMP_FEATURES if "plexamp" in request.headers.get("X-Plex-Product", "").lower() else FEATURES_DICT
|
||||
},
|
||||
"subscriptions": [
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user