Skip to content

Commit

Permalink
Fixed errors reading cached data into JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Mar 30, 2021
1 parent ae5d8a3 commit d060576
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integrations/baemail/baemail.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type Response struct {
ComposeURL string `json:"compose_url"` // Compose email url
Found bool `json:"found"` // Flag if the profile was found
StatusCode int `json:"status_code"` // Status code returned on the request
Tracing resty.TraceInfo `json:"tracing"` // Trace information if enabled on the request
Tracing resty.TraceInfo `json:"-"` // Trace information if enabled on the request
}

// HasProfile will check if a profile exists for the given paymail address
Expand Down
2 changes: 1 addition & 1 deletion integrations/bitpic/bitpic.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type Response struct {
type SearchResponse struct {
Result *SearchResult `json:"result"` // Result from BitPics
StatusCode int `json:"status_code"` // Status code returned on the request
Tracing resty.TraceInfo `json:"tracing"` // Trace information if enabled on the request
Tracing resty.TraceInfo `json:"-"` // Trace information if enabled on the request
}

// SearchResult is the child of the response
Expand Down
2 changes: 1 addition & 1 deletion integrations/powping/powping.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
type Response struct {
Profile *Profile `json:"profile"` // The roundesk profile data
StatusCode int `json:"status_code"` // Status code returned on the request
Tracing resty.TraceInfo `json:"tracing"` // Trace information if enabled on the request
Tracing resty.TraceInfo `json:"-"` // Trace information if enabled on the request
}

// Profile is the public profile information for a given paymail
Expand Down
2 changes: 1 addition & 1 deletion integrations/roundesk/roundesk.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
type Response struct {
Profile *Profile `json:"profile"` // The roundesk profile data
StatusCode int `json:"status_code"` // Status code returned on the request
Tracing resty.TraceInfo `json:"tracing"` // Trace information if enabled on the request
Tracing resty.TraceInfo `json:"-"` // Trace information if enabled on the request
}

// Profile is the roundesk public profile
Expand Down

0 comments on commit d060576

Please sign in to comment.