fix: 🚑 rollback hiding incompatible eps

This commit is contained in:
Michel Roux 2024-05-18 22:02:34 +02:00
parent a747286341
commit 5c117de552
5 changed files with 8 additions and 16 deletions

View File

@ -3,7 +3,7 @@
"description": "🔊 Browse, manage and listen to podcasts",
"type": "project",
"license": "AGPL-3.0-or-later",
"version": "2.2.0",
"version": "2.2.1",
"require-dev": {
"nextcloud/ocp": "^29.0.0",
"psalm/phar": "^5.24.0",

2
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "dae2a4607676ce7c584673c29a02f425",
"content-hash": "1f79e7311d583b49dec7b7ed5e0cffb9",
"packages": [],
"packages-dev": [
{

10
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "repod",
"version": "2.2.0",
"version": "2.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "repod",
"version": "2.2.0",
"version": "2.2.1",
"license": "agpl",
"dependencies": {
"@nextcloud/axios": "^2.5.0",
@ -7262,9 +7262,9 @@
"peer": true
},
"node_modules/fast-xml-parser": {
"version": "4.3.6",
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.3.6.tgz",
"integrity": "sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==",
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.0.tgz",
"integrity": "sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg==",
"funding": [
{
"type": "github",

View File

@ -1,7 +1,7 @@
{
"name": "repod",
"description": "🔊 Browse, manage and listen to podcasts",
"version": "2.2.0",
"version": "2.2.1",
"bugs": {
"url": "https://git.crystalyx.net/Xefir/repod/issues"
},

View File

@ -177,14 +177,6 @@ export default {
},
filteredEpisodes() {
return this.episodes.filter((episode) => {
// Hide episode that can't be read
if (
window.location.protocol === 'https:' &&
episode.url.startsWith('http:/')
) {
return false
}
if (!this.filters.listened && this.hasEnded(episode)) {
return false
}