New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@audiowalk/sdk

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@audiowalk/sdk - npm Package Compare versions

Comparing version 1.5.7 to 1.5.8

1

dist/player/player-controller.d.ts

@@ -32,2 +32,3 @@ import { BehaviorSubject, Subject } from "rxjs";

private defaultOptions;
private destroyed;
private destroyEvent;

@@ -34,0 +35,0 @@ private volume;

4

dist/player/player-controller.js

@@ -25,2 +25,3 @@ import { BehaviorSubject, combineLatest, filter, interval, map, Subject, takeUntil, takeWhile } from "rxjs";

};
destroyed = false;
destroyEvent = new Subject();

@@ -99,2 +100,3 @@ volume = 1;

this.log("Called destroy" + (now ? "now" : ""));
this.destroyed = true;
if (this.status.value !== PlayerStatus.ended) {

@@ -152,3 +154,3 @@ await this.stop();

this.log("Called stop", params.fade ? "with fade" : "");
if (this.status.value !== PlayerStatus.ended) {
if (!this.destroyed && this.status.value !== PlayerStatus.ended) {
this.status.next(PlayerStatus.ended);

@@ -155,0 +157,0 @@ this.onStop.next();

{
"name": "@audiowalk/sdk",
"version": "1.5.7",
"version": "1.5.8",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc