Projects STRLCPY snscrape Commits 56e42320
🤬
  • ■ ■ ■ ■
    snscrape/modules/telegram.py
    skipped 320 lines
    321 321   
    322 322  def durationStrToSeconds(durationStr):
    323 323   durationList = durationStr.split(':')
    324  - return sum([int(s) * int(g) for s, g in zip([1, 60, 360], reversed(durationList))])
     324 + return sum([int(s) * int(g) for s, g in zip([1, 60, 3600], reversed(durationList))])
    325 325   
    326 326  def telegramResponseOkCallback(r):
    327 327   if r.status_code == 200:
    skipped 3 lines
Please wait...
Page is in error, reload to recover