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
Problem:
The scrubNames() function removes PII from file paths
in a given string. The issue was that in certain cases where
the file path extension was composed of multiple extensions,
no file extension would be used.
So instead of 'x.ext1.ext2' -> 'x.ext2', we would just
get 'x'.
Solution:
Preserve the last file extension.
Also, this indirectly fixed some of the unit tests that were returning
unexpected results.
Signed-off-by: Nikolas Komonen <[email protected]>
0 commit comments