File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -562,7 +562,10 @@ class NodelinkServer extends EventEmitter {
562562 }
563563
564564 if ( audius ?. enabled ) {
565- if ( audius . appName !== undefined && typeof audius . appName !== 'string' ) {
565+ if (
566+ audius . appName !== undefined &&
567+ typeof audius . appName !== 'string'
568+ ) {
566569 throw new Error ( 'sources.audius.appName must be a string' )
567570 }
568571 }
@@ -571,7 +574,10 @@ class NodelinkServer extends EventEmitter {
571574 throw new Error ( 'sources.audius.apiKey must be a string' )
572575 }
573576
574- if ( audius . apiSecret !== undefined && typeof audius . apiSecret !== 'string' ) {
577+ if (
578+ audius . apiSecret !== undefined &&
579+ typeof audius . apiSecret !== 'string'
580+ ) {
575581 throw new Error ( 'sources.audius.apiSecret must be a string' )
576582 }
577583
You can’t perform that action at this time.
0 commit comments