Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

magmastream

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

magmastream - npm Package Compare versions

Comparing version 2.5.4 to 2.5.5

8

dist/structures/Manager.js

@@ -192,6 +192,10 @@ "use strict";

for (const track of tracksToReplace) {
if (isYouTubeURL(track.uri) && track.title.includes("-")) {
if (isYouTubeURL(track.uri)) {
track.author = track.author.replace("- Topic", "");
track.title = track.title.replace("Topic -", "");
}
if (track.title.includes("-")) {
const [author, title] = track.title.split("-").map((str) => str.trim());
track.author = author;
track.title = title.replace("Topic -", "");
track.title = title;
}

@@ -198,0 +202,0 @@ }

{
"name": "magmastream",
"version": "2.5.4",
"version": "2.5.5",
"description": "A user-friendly Lavalink client designed for NodeJS.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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