omansak / libvideo

A lightweight .NET library to download YouTube videos.
BSD 2-Clause "Simplified" License
553 stars 164 forks source link

Count backslashes before quotes #252

Closed hondek closed 2 years ago

hondek commented 2 years ago

Sometime JSON string have two backslashes before quote, like this:

"keywords":[
    "\\David Knopfler\\",

If we count how many backslashes if before quote we can tell if the count of backslash before quote is odd: if (backSlashesCounter%2 == 1) we can go outside of JSON string