Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

idlecast

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idlecast - npm Package Compare versions

Comparing version
1.0.2
to
1.0.3
+10
-2
bin.js

@@ -56,4 +56,12 @@ #!/usr/bin/env node

debug('chromecast status', status)
if (err) return wait()
if (files.length && status && status.applications && status.applications.length && status.applications[0].appId === 'E8C28D3C') return play()
if (err || !files.length || !status || !status.applications || status.applications.length !== 1) return wait()
if (status.applications[0].appId === 'E8C28D3C') return play()
if (status.applications[0].displayName === 'Default Media Receiver' || status.applications[0].appId === 'CC1AD845') {
player.status(function (err, status) {
if (err) return wait()
if (!status) return play()
wait()
})
return
}
wait()

@@ -60,0 +68,0 @@ })

+1
-1
{
"name": "idlecast",
"version": "1.0.2",
"version": "1.0.3",
"description": "Chomecast all files in a folder when your chromecast isn't doing anything else",

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