Skip to content

Commit 1446f62

Browse files
committed
fixed bug make mission required in the no fly zone
1 parent a086c19 commit 1446f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/NoFlyZoneService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function _assertExists(id, entity) {
4343
* @private
4444
*/
4545
function* _validateMission(values) {
46-
if (!values.mission) {
46+
if (values.mission) {
4747
yield MissionService.getSingle(values.mission);
4848
}
4949
if (values.isPermanent) {

0 commit comments

Comments
 (0)