Fix wrong POST parameter (order)

pull/81/head
MillenniumEarl 2021-03-04 11:57:15 +01:00
parent 75345718be
commit b6acab7d82
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ export default class ThreadSearchQuery implements IQuery {
}
// Set the other values
params["o"] = this.order.toString();
params["order"] = this.order.toString();
params["page"] = this.page.toString();
return params;