Просмотр исходного кода

prevent default warn message when max-archive-depth not set

Zach 8 месяцев назад
Родитель
Сommit
0357c3cbf6
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      sources/file.go

+ 1 - 1
sources/file.go

@@ -55,7 +55,7 @@ func (s *File) Fragments(ctx context.Context, yield FragmentsFunc) error {
 	// and fall back on treating it like a normal file and let fileFragments
 	// decide what to do with it.
 	if err == nil && format != nil {
-		if s.archiveDepth+1 > s.MaxArchiveDepth {
+		if (s.archiveDepth+1 > s.MaxArchiveDepth) && s.MaxArchiveDepth != 0 {
 			logging.Warn().Str(
 				"path", s.FullPath(),
 			).Int(