Skip to content

Commit

Permalink
2.5.1 - Fixes processing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed May 7, 2020
1 parent f24c7c3 commit a6681e6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.5.1

- Fixes processing issue

## 2.5.0

- **Large overhaul of the core code**
Expand Down
10 changes: 4 additions & 6 deletions src/Javascript/processing.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,10 @@ function getTags(headUrl, getUrl, filename) {
const originalGetResponse = tokenizer.rangeRequestClient.getResponse

tokenizer.rangeRequestClient.getResponse =
overrideContentType
? function() {
this.resolvedUrl = getUrl
return originalGetResponse.apply(this, arguments)
}
: originalGetResponse
function() {
this.resolvedUrl = getUrl
return originalGetResponse.apply(this, arguments)
}

return musicMetadata.parseFromTokenizer(
tokenizer,
Expand Down
2 changes: 1 addition & 1 deletion src/Static/Manifests/Nextcloud/appinfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>Diffuse</name>
<summary>A music player that connects to your cloud/distributed storage</summary>
<description>A music player that connects to your cloud/distributed storage</description>
<version>2.5.0</version>
<version>2.5.1</version>
<licence>agpl</licence>
<author>Steven Vandevelde</author>
<category>multimedia</category>
Expand Down
2 changes: 1 addition & 1 deletion src/Static/Manifests/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Diffuse",
"short_name": "Diffuse",
"description": "A music player that connects to your cloud/distributed storage",
"version": "2.5.0",
"version": "2.5.1",
"author": "Steven Vandevelde <[email protected]>",
"icons": [
{
Expand Down

0 comments on commit a6681e6

Please sign in to comment.