mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-30 10:28:28 +00:00

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;
|
|
}
|