removed console.log()s

This commit is contained in:
ManjaroOne666 2019-01-28 12:17:08 +00:00
parent 79fa211995
commit 40cf497c5e
1 changed files with 0 additions and 2 deletions

View File

@ -60,10 +60,8 @@ export default {
&& this.galleries[this.activeGalleryIndex].images && this.galleries[this.activeGalleryIndex].images
&& this.galleries[this.activeGalleryIndex].images[this.activeImageIndex] && this.galleries[this.activeGalleryIndex].images[this.activeImageIndex]
) { ) {
console.log('found')
return this.galleries[this.activeGalleryIndex].images[this.activeImageIndex].url return this.galleries[this.activeGalleryIndex].images[this.activeImageIndex].url
} else { } else {
console.log('not found')
// TOOD return 404 page - does this do it? // TOOD return 404 page - does this do it?
throw({ statusCode: 404, message: 'Image Not Found' }) throw({ statusCode: 404, message: 'Image Not Found' })
} }