because only clips are supported for now. vods may be supported after we implement HLS local processing
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
const friendlyNames = {
|
|
bsky: "bluesky",
|
|
twitch: "twitch clips"
|
|
}
|
|
|
|
export const friendlyServiceName = (service) => {
|
|
if (service in friendlyNames) {
|
|
return friendlyNames[service];
|
|
}
|
|
return service;
|
|
}
|