Skip to content

Commit

Permalink
Fixed the names of some virtuals in roAudioPlayerEvent to match namin…
Browse files Browse the repository at this point in the history
…g conventions
  • Loading branch information
chrisdp committed Feb 20, 2025
1 parent dfdec95 commit 1c8aa5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adapters/customVariables/roAudioPlayerEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function pushRoAudioPlayerEventVariables(adapter: DebugProtocolAdapter, e
});

pushCustomVariableToContainer(adapter, container, {
name: '$formatDetected',
name: '$isFormatDetected',
type: VariableType.Boolean,
presentationHint: { kind: 'virtual', lazy: true },
evaluateName: `${expression}.IsFormatDetected()`,
Expand All @@ -113,7 +113,7 @@ export function pushRoAudioPlayerEventVariables(adapter: DebugProtocolAdapter, e
});

pushCustomVariableToContainer(adapter, container, {
name: '$segmentDownloadStarted',
name: '$isSegmentDownloadStarted',
type: VariableType.Boolean,
presentationHint: { kind: 'virtual', lazy: true },
evaluateName: `${expression}.IsSegmentDownloadStarted()`,
Expand Down

0 comments on commit 1c8aa5c

Please sign in to comment.