We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f9e1bc commit 62e97c8Copy full SHA for 62e97c8
1 file changed
player/lua/select.lua
@@ -128,9 +128,11 @@ end
128
129
local function format_track(track)
130
local bitrate = track["demux-bitrate"] or track["hls-bitrate"]
131
+ local bidi_fsi = "\226\129\168" -- U+2068 FIRST STRONG ISOLATE
132
+ local bidi_pdi = "\226\129\169" -- U+2069 POP DIRECTIONAL ISOLATE
133
134
return (track.selected and "●" or "○") ..
- (track.title and " " .. track.title or "") ..
135
+ (track.title and " " .. bidi_fsi .. track.title .. bidi_pdi or "") ..
136
" (" .. (
137
(track.lang and track.lang .. " " or "") ..
138
(track.codec and track.codec .. " " or "") ..
0 commit comments