(Optimization) Remove redundant filter call
This commit is contained in:
parent
8e2fefc3f7
commit
2d89cc7bfe
@ -93,7 +93,6 @@ export default class GitHub {
|
|||||||
|
|
||||||
getMedia() {
|
getMedia() {
|
||||||
return this.api.listFiles(this.config.get('media_folder'))
|
return this.api.listFiles(this.config.get('media_folder'))
|
||||||
.then(files => files.filter(file => file.type === 'file'))
|
|
||||||
.then(files => files.map(({ sha, name, size, download_url, path }) => {
|
.then(files => files.map(({ sha, name, size, download_url, path }) => {
|
||||||
const url = new URL(download_url);
|
const url = new URL(download_url);
|
||||||
if (url.pathname.match(/.svg$/)) {
|
if (url.pathname.match(/.svg$/)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user