We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c2f06 commit bb88ce2Copy full SHA for bb88ce2
src/util.js
@@ -539,7 +539,7 @@ export const validate = async (options, releaseInfo) => {
539
if (typeof options.app.NSHumanReadableCopyright !== 'string') {
540
throw new Error('Expected options.app.NSHumanReadableCopyright to be a string. Got ' + options.app.NSHumanReadableCopyright);
541
}
542
- if (typeof options.app.NSLocalNetworkUsageDescription !== 'string') {
+ if (options.app.NSLocalNetworkUsageDescription && typeof options.app.NSLocalNetworkUsageDescription !== 'string') {
543
throw new Error('Expected options.app.NSLocalNetworkUsageDescription to be a string. Got ' + options.app.NSLocalNetworkUsageDescription);
544
545
} else {
0 commit comments