Skip to content

Commit

Permalink
fix: panic at cmdupload/upload.go:255
Browse files Browse the repository at this point in the history
  • Loading branch information
simulot committed Dec 26, 2023
1 parent de746fb commit 1b389bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmdupload/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ assetLoop:
break assetLoop
}
if a.Err != nil {
app.journalAsset(a, journal.ERROR, err.Error())
app.journalAsset(a, journal.ERROR, a.Err.Error())
} else {
err = app.handleAsset(ctx, a)
if err != nil {
Expand Down
8 changes: 8 additions & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release notes

## Release next

### fix: panic: runtime error: invalid memory address or nil pointer dereference at github.com/simulot/immich-go/cmdupload/upload.go:255

## Release 0.9.4

### fix: fixed incorrect bool value (#105)

## Release 0.9.3

### feat: added ability to skip ssl verification (#103)
Expand Down

0 comments on commit 1b389bc

Please sign in to comment.