indicator
This commit is contained in:
parent
de10f51c31
commit
585b1ef17c
1 changed files with 1 additions and 1 deletions
|
@ -881,7 +881,7 @@ export class Player extends EventEmitter {
|
|||
: 15;
|
||||
|
||||
const index = Math.round((currentStreamTime / totalTime) * length);
|
||||
const indicator = typeof options?.indicator === 'string' ? options?.indicator.length > 0 ? options?.indicator : '🔘' : '🔘';
|
||||
const indicator = typeof options?.indicator === 'string' && options?.indicator.length > 0 ? options?.indicator : '🔘';
|
||||
const line = typeof options?.line === 'string' ? options?.line.length > 0 ? options?.line : '▬' : '▬';
|
||||
|
||||
if (index >= 1 && index <= length) {
|
||||
|
|
Loading…
Reference in a new issue