You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Im getting a lot of Invalid argument errors when using the posts text as file name substring. Maybe it's possible to have another filename placeholder that includes only completely stripped message texts. For example:
An error occurred: Invalid argument : '/config/__user_data__/sites/OnlyFans/xxx/Posts/Free/Videos/xxx_Let’s play ride the 🤠 ?_116061234_2043891234_2021-03-01.mp4'
Probably the text is Let’s play ride the 🤠 ? in this case, which might not get quoted/escaped everywhere. A regex like https://rubular.com/r/v3XNERrtK8hLvL could produce something like a {safe_text} one can use as filename part? :)
eg. in Ruby:
irb(main):019" text = "Let’s pla˙∆˚ˆ√˜µ¬y ride the 🤠 ? fo oooo bar
irb(main):020"
irb(main):021> Bla blaaaa÷¿¿¿"
=> "Let’s pla˙∆˚ˆ√˜µ¬y ride the 🤠 ? fo oooo bar\n\nBla blaaaa÷¿¿¿"
irb(main):023> text.scan(/[a-zA-Z0-9]+(?:\s[a-zA-Z0-9]+)*/).join(' ')
=> "Let s pla y ride the fo oooo bar Bla blaaaa"
Thanks for considering :) ❤️
(I'm really not that into C#, otherwiese I would probably open a PR, sorry. Maybe you can point me to a file as entrypoint for this change, I could try tho :))
The text was updated successfully, but these errors were encountered:
Im getting a lot of
Invalid argument
errors when using the posts text as file name substring. Maybe it's possible to have another filename placeholder that includes only completely stripped message texts. For example:with config:
I frequently encounter this:
Probably the
text
isLet’s play ride the 🤠 ?
in this case, which might not get quoted/escaped everywhere. A regex like https://rubular.com/r/v3XNERrtK8hLvL could produce something like a{safe_text}
one can use as filename part? :)eg. in Ruby:
Thanks for considering :) ❤️
(I'm really not that into C#, otherwiese I would probably open a PR, sorry. Maybe you can point me to a file as entrypoint for this change, I could try tho :))
The text was updated successfully, but these errors were encountered: