diff --git a/android/app/build.gradle b/android/app/build.gradle index 661dd53c..d842defa 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "com.audiobookshelf.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 11 - versionName "0.8.2-beta" + versionCode 12 + versionName "0.8.3-beta" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/layouts/default.vue b/layouts/default.vue index 2bf29238..e7a54bc9 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -145,7 +145,7 @@ export default { if (audiobookId) { // Notify server to remove prepared download if (this.$server.socket) { - this.$server.socket.emit('remove_download', downloadId) + this.$server.socket.emit('remove_download', audiobookId) } console.log('Download complete', filename, downloadId, contentUrl, 'AudiobookId:', audiobookId) diff --git a/package.json b/package.json index baa64ff9..75cc499a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "audiobookshelf-app", - "version": "v0.8.2-beta", + "version": "v0.8.3-beta", "author": "advplyr", "scripts": { "dev": "nuxt --hostname localhost --port 1337",