Conversation
immich-go rejects .tgz/.tar.gz Google Takeout parts by design (gzip streams cannot be seeked, see simulot#36, simulot#96, simulot#1038), but the error only said the archive can't be used. Users hit this after downloading hundreds of GB and are left guessing. Say what to do: extract all parts into one folder and pass the folder, or re-export as ZIP. Complements simulot#1389 (docs).
BeLazy167
force-pushed
the
tgz-error-hint
branch
from
September 13, 2026 05:46
5af06c2 to
27f820d
Compare
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
upload from-google-photosrejects.tgz/.tar.gzTakeout parts by design (#36, #96, #1038: a gzip stream cannot be seeked). The error only says:Users typically hit this after downloading a 400+ GB export and get no hint about what to do next. The docs currently imply tgz works (#1389 fixes that side).
Change
One-line change in
internal/fshelper/parseArgs.go: the error now states the two valid options."All parts into one folder" matters: sidecar JSONs and media can live in different parts (docs/misc/google-takeout.md), so per-part extraction loses metadata.
No behaviour change;
go build ./...andgo test ./internal/fshelper/pass.Complements #1389.