(cdnLink)
| 17 | } |
| 18 | } |
| 19 | export function getUniversalCdnUrl(cdnLink) { |
| 20 | try { |
| 21 | const cdn = new URL(cdnLink); |
| 22 | cdn.host = "scontent.cdninstagram.com"; |
| 23 | return cdn.href; |
| 24 | } catch (e) { |
| 25 | return cdnLink; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // WARNING: not working anymore?? |
| 30 | export async function getAllMedia({ uid, progressCallback, limit = 0 }) { |
no outgoing calls
no test coverage detected