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/charge.ts:23

export const lookupCharges = async (data: {
  email: string;
  last4: string | null;
  year: string | null;
  month: string | null;
}) => {
  const response = await request({
    method: "GET",
    accept: "json",
    url: Routes.charge_data_path({
      email: data.email,
      last_4: data.last4,
      year: data.year,
      month: data.month,
      format: "json",
    }),
  });
  if (response.ok) return typia.assert<{ success: boolean }>(await response.json());
  throw new ResponseError();
};

export const lookupLicenseKey = async (data: {
  email: string;
  productQuery: string | null;
  year: string | null;
  month: string | null;
}) => {
  const response = await request({
    method: "GET",
    accept: "json",
    url: Routes.license_key_lookup_data_path({
      email: data.email,
      product_query: data.productQuery,
      year: data.year,
      month: data.month,
      format: "json",
    }),

View on GitHub (pinned to afeacbd394)

When it happens

Trigger: Thrown at app/javascript/data/charge.ts:23 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/a2f7bc71f5b43294. Report an issue: GitHub.