Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 0f2c87c

Browse files
Dimitar TachevFatme
Dimitar Tachev
andauthored
chore: fix PR comments
Co-Authored-By: Fatme <[email protected]>
1 parent 89f2df3 commit 0f2c87c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

androidProjectHelpers.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ const getRuntimeNdkRevision = (projectDir) => {
5454
return androidSettingsJSON.ndkRevision;
5555
} else {
5656
return null;
57-
}
57+
const result = androidSettingsJSON && androidSettingsJSON.ndkRevision;
58+
return result;
5859
} catch (e) {
5960
return null;
6061
}
@@ -77,4 +78,4 @@ module.exports = {
7778
getAndroidV8Version,
7879
getMksnapshotParams,
7980
getRuntimeNdkRevision
80-
};
81+
};

0 commit comments

Comments
 (0)