Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/808ccf1c6975f853db6dc89f4d9f1f5488dbaae3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix(quotas): do not count already-requested seasons when editing TV request ()

pull/1644/head
TheCatLady 4 years ago committed by GitHub
parent 22415642e8
commit 808ccf1c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -92,7 +92,9 @@ const TvRequestModal: React.FC<RequestModalProps> = ({
);
const currentlyRemaining =
(quota?.tv.remaining ?? 0) - selectedSeasons.length;
(quota?.tv.remaining ?? 0) -
selectedSeasons.length +
(editRequest?.seasons ?? []).length;
const updateRequest = async () => {
if (!editRequest) {

Loading…
Cancel
Save