Skip to content

Commit 68107ee

Browse files
committed
IOSHelper: fix missing break from outer loop when device UUID is found
Followup to commit b9fecd2
1 parent 05591eb commit 68107ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lime/tools/IOSHelper.hx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,10 @@ class IOSHelper
420420
break;
421421
}
422422
}
423+
if (deviceUUID != null && deviceUUID.length > 0)
424+
{
425+
break;
426+
}
423427
}
424428

425429
if (deviceUUID == null || deviceUUID.length == 0) {

0 commit comments

Comments
 (0)