mirror of
https://github.com/Xevion/r2park.git
synced 2025-12-06 01:15:57 -06:00
Fix format specifier, limit embed field length to 256 chars
This commit is contained in:
10
api.go
10
api.go
@@ -304,7 +304,7 @@ func RegisterVehicle(formParams map[string]string, propertyId uint, residentProf
|
|||||||
|
|
||||||
// Sanity check that a proper result was returned
|
// Sanity check that a proper result was returned
|
||||||
if !result.success && !strings.Contains(htmlString, "Denied") {
|
if !result.success && !strings.Contains(htmlString, "Denied") {
|
||||||
return nil, fmt.Errorf("unexpected response: %s", htmlString)
|
return nil, fmt.Errorf("unexpected response: %v - %s", res, htmlString)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse the HTML response
|
// Parse the HTML response
|
||||||
@@ -387,8 +387,10 @@ func RegisterEmailConfirmation(email string, vehicleId string, propertyId string
|
|||||||
req := BuildRequestWithBody("GET", "/register-vehicle-confirmation-process", params, nil)
|
req := BuildRequestWithBody("GET", "/register-vehicle-confirmation-process", params, nil)
|
||||||
SetTypicalHeaders(req, nil, nil, false)
|
SetTypicalHeaders(req, nil, nil, false)
|
||||||
|
|
||||||
res, _ := doRequest(req)
|
res, err := doRequest(req)
|
||||||
if res.StatusCode != 200 {
|
if err != nil {
|
||||||
|
return false, fmt.Errorf("failed to send email confirmation request: %w", err)
|
||||||
|
} else if res.StatusCode != 200 {
|
||||||
return false, fmt.Errorf("unexpected status code: %d", res.StatusCode)
|
return false, fmt.Errorf("unexpected status code: %d", res.StatusCode)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -399,5 +401,5 @@ func RegisterEmailConfirmation(email string, vehicleId string, propertyId string
|
|||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return false, fmt.Errorf("unexpected response: %s", htmlString)
|
return false, fmt.Errorf("unexpected response: %v - %s", res, htmlString)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,8 +186,9 @@ func HandleError(session *discordgo.Session, interaction *discordgo.InteractionC
|
|||||||
}
|
}
|
||||||
|
|
||||||
innerErrorFields = append(innerErrorFields, &discordgo.MessageEmbedField{
|
innerErrorFields = append(innerErrorFields, &discordgo.MessageEmbedField{
|
||||||
Name: "Error",
|
Name: "Error",
|
||||||
Value: innerError.Error(),
|
// limit to 256 characters
|
||||||
|
Value: innerError.Error()[:256],
|
||||||
})
|
})
|
||||||
innerCount += 1
|
innerCount += 1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user