javascript-ampache 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-ampache",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "A JS library for the Ampache API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.m.js",
package/src/base.ts CHANGED
@@ -40,7 +40,7 @@ export abstract class Base {
40
40
 
41
41
  if (this.debug) {
42
42
  console.debug(
43
- "javascript-ampache query URL %c" + url,
43
+ "javascript-ampache query URL %c" + url + "&auth=" + this.sessionKey,
44
44
  "color: black; font-style: italic; background-color: orange;padding: 2px"
45
45
  );
46
46
  }
@@ -63,7 +63,7 @@ export abstract class Base {
63
63
 
64
64
  if (this.debug) {
65
65
  console.debug(
66
- "javascript-ampache query URL %c" + url,
66
+ "javascript-ampache query URL %c" + url + "&auth=" + this.sessionKey,
67
67
  "color: black; font-style: italic; background-color: orange;padding: 2px"
68
68
  );
69
69
  }