diff --git a/src/components/Feed/Episodes.vue b/src/components/Feed/Episodes.vue
index 943d7f0..d770043 100644
--- a/src/components/Feed/Episodes.vue
+++ b/src/components/Feed/Episodes.vue
@@ -13,6 +13,7 @@
@click="modalEpisode = episode">
@@ -21,6 +22,7 @@
@@ -32,6 +34,7 @@
diff --git a/src/components/Sidebar/Item.vue b/src/components/Sidebar/Item.vue
index a8ebab9..ca7451d 100644
--- a/src/components/Sidebar/Item.vue
+++ b/src/components/Sidebar/Item.vue
@@ -3,7 +3,10 @@
:name="feed ? feed.title : url"
:to="hash">
-
+
diff --git a/src/utils/time.js b/src/utils/time.js
index c9f1369..cd9c501 100644
--- a/src/utils/time.js
+++ b/src/utils/time.js
@@ -45,8 +45,8 @@ export const formatLocaleDate = (date) => date.toLocaleDateString(undefined, { d
*/
export const durationToSeconds = (duration) => {
const splitDuration = duration.split(':').reverse()
- let seconds = splitDuration[0]
- seconds += (splitDuration.length > 1) ? splitDuration[1] * 60 : 0
- seconds += (splitDuration.length > 2) ? splitDuration[2] * 60 * 60 : 0
+ let seconds = parseInt(splitDuration[0])
+ seconds += (splitDuration.length > 1) ? parseInt(splitDuration[1]) * 60 : 0
+ seconds += (splitDuration.length > 2) ? parseInt(splitDuration[2]) * 60 * 60 : 0
return seconds
}