فهرست منبع

fix: Unable to update station settings

Owen Diffey 2 سال پیش
والد
کامیت
b908b0cf41
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      backend/logic/actions/stations.js

+ 3 - 2
backend/logic/actions/stations.js

@@ -1395,9 +1395,10 @@ export default {
 						.catch(next);
 				},
 
-				async () => {
+				next => {
 					if (newStation.requests.autorequestLimit > newStation.requests.limit)
-						throw new Error("The autorequest limit cannot be higher than the request limit.");
+						next("The autorequest limit cannot be higher than the request limit.");
+					else next();
 				},
 
 				next => {