Skip to content

Commit

Permalink
Sequence fix. (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed May 20, 2024
1 parent 0515e1f commit fb5a5af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/tlCore/PathInline.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ namespace tl
!value._number.empty() &&
_directory == value._directory &&
_baseName == value._baseName &&
(_padding == value._padding || _padding == value._numberDigits) &&
(_padding == value._padding ||
_padding == value._numberDigits ||
_numberDigits == value._padding) &&
_extension == value._extension &&
_request == value._request;
}
Expand Down

0 comments on commit fb5a5af

Please sign in to comment.