зеркало из https://github.com/electron/apps.git
fix: cors errors on images from github repos (#2000)
This commit is contained in:
Родитель
f7c978ca7d
Коммит
8275f8dfbb
|
@ -106,10 +106,10 @@ function cleanReadme(readme, defaultBranch, app) {
|
|||
`${app.slug}: updating ${$relativeImages.length} relative image URLs`
|
||||
)
|
||||
$relativeImages.each((i, img) => {
|
||||
$(img).attr(
|
||||
'src',
|
||||
`${app.repository}/raw/${defaultBranch}/${$(img).attr('src')}`
|
||||
)
|
||||
$(img).attr({
|
||||
'src': `${app.repository.replace('github.com', 'raw.githubusercontent.com')}/${defaultBranch}/${$(img).attr('src')}`,
|
||||
crossorigin: ''
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче