[ie/instagram] Fix extraction of older private posts (#12451)

Authored by: bashonly
pull/12410/head^2
bashonly 1 week ago committed by GitHub
parent a90641c836
commit a59abe0636
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -33,8 +33,10 @@ def _pk_to_id(media_id):
def _id_to_pk(shortcode):
"""Covert a shortcode to a numeric value"""
return decode_base_n(shortcode[:11], table=_ENCODING_CHARS)
"""Convert a shortcode to a numeric value"""
if len(shortcode) > 28:
shortcode = shortcode[:-28]
return decode_base_n(shortcode, table=_ENCODING_CHARS)
class InstagramBaseIE(InfoExtractor):

Loading…
Cancel
Save