lbry-desktop/ui/util/lbrytv.js

8 lines
288 B
JavaScript
Raw Normal View History

2019-10-29 12:23:56 -04:00
function generateStreamUrl(claimName, claimId, apiUrl) {
const prefix = process.env.SDK_API_URL || apiUrl;
2019-10-21 10:50:34 -04:00
return `${prefix}/content/claims/${claimName}/${claimId}/stream`;
}
2019-10-22 10:40:57 -04:00
2019-11-07 14:39:22 -05:00
// module.exports needed since the web server imports this function
2019-10-22 10:40:57 -04:00
module.exports = { generateStreamUrl };