Linter bracket spacing 1

This commit is contained in:
Natsumi
2023-05-10 17:11:14 +12:00
parent debaba13b0
commit b538d614e3
10 changed files with 77 additions and 72 deletions
+14 -9
View File
@@ -4698,8 +4698,6 @@ speechSynthesis.getVoices();
// #endregion // #endregion
// API // API
// #endregion // #endregion
// #region | Misc // #region | Misc
@@ -5967,7 +5965,8 @@ speechSynthesis.getVoices();
break; break;
case 'invite': case 'invite':
this.speak( this.speak(
`${noty.senderUsername `${
noty.senderUsername
} has invited you to ${this.displayLocation( } has invited you to ${this.displayLocation(
noty.details.worldId, noty.details.worldId,
noty.details.worldName noty.details.worldName
@@ -6025,7 +6024,8 @@ speechSynthesis.getVoices();
case 'PortalSpawn': case 'PortalSpawn':
if (noty.displayName) { if (noty.displayName) {
this.speak( this.speak(
`${noty.displayName `${
noty.displayName
} has spawned a portal to ${this.displayLocation( } has spawned a portal to ${this.displayLocation(
noty.instanceId, noty.instanceId,
noty.worldName noty.worldName
@@ -6148,7 +6148,8 @@ speechSynthesis.getVoices();
case 'invite': case 'invite':
AppApi.XSNotification( AppApi.XSNotification(
'VRCX', 'VRCX',
`${noty.senderUsername `${
noty.senderUsername
} has invited you to ${this.displayLocation( } has invited you to ${this.displayLocation(
noty.details.worldId, noty.details.worldId,
noty.details.worldName noty.details.worldName
@@ -6237,7 +6238,8 @@ speechSynthesis.getVoices();
if (noty.displayName) { if (noty.displayName) {
AppApi.XSNotification( AppApi.XSNotification(
'VRCX', 'VRCX',
`${noty.displayName `${
noty.displayName
} has spawned a portal to ${this.displayLocation( } has spawned a portal to ${this.displayLocation(
noty.instanceId, noty.instanceId,
noty.worldName noty.worldName
@@ -10550,7 +10552,8 @@ speechSynthesis.getVoices();
} }
if (this.debugPhotonLogging) { if (this.debugPhotonLogging) {
var displayName = this.getDisplayNameFromPhotonId(senderId); var displayName = this.getDisplayNameFromPhotonId(senderId);
var feed = `RPC ${displayName} ${this.photonEventType[eventData.EventType] var feed = `RPC ${displayName} ${
this.photonEventType[eventData.EventType]
}${eventName}`; }${eventName}`;
console.log('VrcRpc:', feed); console.log('VrcRpc:', feed);
} }
@@ -15764,7 +15767,8 @@ speechSynthesis.getVoices();
if (type === 'search') { if (type === 'search') {
try { try {
var response = await webApiService.execute({ var response = await webApiService.execute({
url: `${this.avatarRemoteDatabaseProvider url: `${
this.avatarRemoteDatabaseProvider
}?${type}=${encodeURIComponent(search)}&n=5000`, }?${type}=${encodeURIComponent(search)}&n=5000`,
method: 'GET', method: 'GET',
headers: { headers: {
@@ -18088,7 +18092,8 @@ speechSynthesis.getVoices();
args.push(`vrchat://launch?id=${location}`); args.push(`vrchat://launch?id=${location}`);
} }
} }
var { launchArguments, vrcLaunchPathOverride } = this.launchOptionsDialog; var { launchArguments, vrcLaunchPathOverride } =
this.launchOptionsDialog;
if (launchArguments) { if (launchArguments) {
args.push(launchArguments); args.push(launchArguments);
} }