Skip to content

Commit

Permalink
Fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
alufers committed Sep 21, 2023
1 parent bd549da commit 10976a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/geis_pl/geis_pl_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (gp *GeisPlProvider) Track(ctx context.Context, trackingNumber string) (*co
true,
)
if err != nil {
return nil, fmt.Errorf("failed to read HTML response from DPD: %w", err)
return nil, fmt.Errorf("failed to read HTML response from Geis: %w", err)
}
datatables := doc.Find(".trace211 table").First()
if datatables.Length() <= 0 {
Expand Down

0 comments on commit 10976a7

Please sign in to comment.