diff --git a/app/js/directives.js b/app/js/directives.js
index 0b53b771..6d75cf97 100644
--- a/app/js/directives.js
+++ b/app/js/directives.js
@@ -2018,7 +2018,7 @@ angular.module('myApp.directives', ['myApp.filters'])
var audioVolume = 0.5;
Storage.get('audio_volume').then(function (newAudioVolume) {
- if (newAudioVolume >= 0.0 && newAudioVolume <= 1.0) {
+ if (newAudioVolume > 0 && newAudioVolume <= 1.0) {
audioVolume = newAudioVolume;
}
});
diff --git a/app/partials/desktop/audio_player.html b/app/partials/desktop/audio_player.html
index 550f7015..9ce4444e 100644
--- a/app/partials/desktop/audio_player.html
+++ b/app/partials/desktop/audio_player.html
@@ -35,6 +35,6 @@
\ No newline at end of file
diff --git a/app/partials/mobile/audio_player.html b/app/partials/mobile/audio_player.html
index 9b38ae36..fde47006 100644
--- a/app/partials/mobile/audio_player.html
+++ b/app/partials/mobile/audio_player.html
@@ -34,6 +34,6 @@
\ No newline at end of file