bebo-dot-dev / m3u-epg-editor

a python m3u / epg optimizer
120 stars 27 forks source link

"groups" in config seem to be using wildcard #69

Closed trix7777 closed 2 years ago

trix7777 commented 2 years ago

Eg. using "groupmode": "keep": "groups": [ "United States" ], will get the group "United States" but also a group named "24/7 United States".

Thanks for your work! Please check out my project m2strm.

trix7777 commented 2 years ago

Sorry, confused as I was without drinking my morning coffee I forgot that I could use regex in the config even for groups, this was the solution (must start and end with): "groups": [ "^United States$" ],

bebo-dot-dev commented 2 years ago

Thanks for adding your found fix, very helpful for future me and other people :)