1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00

Update facebook.py

This commit is contained in:
ajj8 2020-01-15 17:58:23 +00:00 committed by GitHub
parent 0c4a0205c7
commit 388df88920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,7 @@ from ..utils import (
sanitized_Request, sanitized_Request,
try_get, try_get,
urlencode_postdata, urlencode_postdata,
merge_dicts,
) )
@ -581,7 +582,7 @@ class FacebookUserIE(InfoExtractor):
query={ query={
'fb_dtsg_ag': fb_dtsg_ag if fb_dtsg_ag else None, 'fb_dtsg_ag': fb_dtsg_ag if fb_dtsg_ag else None,
'data': json.dumps( 'data': json.dumps(
{**data, 'cursor': cursor}, merge_dicts(data, {'cursor': cursor}),
separators=(',', ':')), separators=(',', ':')),
'__a': 1 '__a': 1
}) })