Skip to content

Commit

Permalink
fix some oopsies
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlee337 committed Mar 12, 2024
1 parent b17b39d commit 807d82b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/broadcast/spectate_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,10 @@ export class SpectateManager extends EventEmitter {
*
* @param {string} broadcastId The ID of the broadcast to watch
* @param {string} targetPath Where the SLP files should be stored
* @param {boolean} [singleton] If true, it will open the broadcasts only
* in a single Dolphin window. Opens each broadcast in their own window otherwise.
* @param {SpectateDolphinOptions} dolphinOptions Options for playback dolphin. One of `dolphinId` or `idPostfix` must be specified
* @param {string?} dolphinOptions.dolphinId The ID of the dolphin window to use, will create a dolphin window with the ID if none exists. If not specified, a dolphin ID will be generated
* @param {string?} dolphinOptions.idPostfix A postfix to use with the generated dolphin ID to avoid collisions
* @returns {string} The ID of the dolphin window used
*/
public watchBroadcast(broadcastId: string, targetPath: string, dolphinOptions: SpectateDolphinOptions) {
Preconditions.checkExists(this.wsConnection, "No websocket connection");
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@settings/*": ["settings/*"],
"@console/*": ["console/*"],
"@database/*": ["database/*"],
"@remote/*": ["remote/*"],
"@remote/*": ["remote/*"]
},
"baseUrl": "./src",
"outDir": "release/app/dist",
Expand Down

0 comments on commit 807d82b

Please sign in to comment.