antiwork/gumroad · error · ResponseError
Something went wrong.
Error message
Something went wrong.
What it means
Error "Something went wrong." thrown in antiwork/gumroad.
Source
Thrown at app/javascript/data/account.ts:63
};
type AddPurchaseToLibraryResult = { redirectLocation: string };
export const addPurchaseToLibrary = async (data: {
purchaseId: string;
purchaseEmail: string;
}): Promise<AddPurchaseToLibraryResult> => {
const response = await request({
method: "POST",
url: Routes.add_purchase_to_library_path({ format: "json" }),
accept: "json",
data: { user: { purchase_id: data.purchaseId, purchase_email: data.purchaseEmail } },
});
const responseData = typia.assert<{ success: true; redirect_location: string } | { success: false }>(
await response.json(),
);
if (!responseData.success) throw new ResponseError();
return { redirectLocation: responseData.redirect_location };
};
View on GitHub (pinned to afeacbd394)
When it happens
Trigger: Thrown at app/javascript/data/account.ts:63 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of antiwork/gumroad@afeacbd394 (2026-08-21).
Data as JSON: /api/errors/f09fadc5bd77d5a4.
Report an issue: GitHub.