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
The result drops the single "file.txt" because it has a similar basename to "file02" without a frame placeholder. We would expect to see 2 different sequences:
The problem occurs because there is a key collision when it builds up a list of frames, between "file02.ext" and "file.ext". Once "file02.txt" establishes the key and adds its frame value, "file.ext" is discarded because it does not provide a frame.
The fix is to make the key more unique to differentiate between paths WITH and WITHOUT frames. This allows "file.ext" to be treated as a different single frame sequence.
Given the following:
The result drops the single "file.txt" because it has a similar basename to "file02" without a frame placeholder. We would expect to see 2 different sequences:
The text was updated successfully, but these errors were encountered: