ShadowKnightMK4 / OdinSearch

Search thru local computer files and feed matching output to a class that consumes it.
MIT License
1 stars 0 forks source link

Lack of setting MatchStyleStrick for the filename or directoryname check was not correctly defaulting to MatchAll. Reseason is bad check of lack of enum flag. #15

Closed ShadowKnightMK4 closed 6 months ago

ShadowKnightMK4 commented 6 months ago

The code for comparing strings was incorrect if MatchStyleString.MatchAll or MatchStyleString.MatchAny was not set. The commented standard in the enum said match MatchStyleString.MatchAll is default but did not correctly check for the lack of specifying it in the sub - sub routine StringCheck in the MatchThis routine in OdinSearch class.

Honestly Suprised Test5 in the chalice tests passed earlier.

Should be fixeed.

ShadowKnightMK4 commented 6 months ago

Test5 should legit pass now.