The easiest music streaming server available
This report presents the forensic synthetic code analysis of IrosTheBeggar/mStream, a JavaScript project with 2,384 GitHub stars. SynthScan v2.0 examined 166,206 lines of code across 375 source files, recording 1451 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 15.1 places this repository in the Moderate AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1451 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | rust-parser/src/main.rs | 54 | // ── Config (matches what task-queue.js passes) ────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 192 | // ── Walk/sweep ignore rules ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 616 | // ── Entry point ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 1725 | // ── Main scan ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 1775 | // ── Schema-version guard ──────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 2009 | // ── Serial path ────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 2122 | // ── Parallel path ──────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 2203 | // ── Writer loop (greedy drain) ────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 2705 | // ── Per-file processing ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 3852 | // ── Artist / Album helpers ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 4231 | // ── Lyrics helpers (V19) ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 4330 | // ── V59: lyrics_search_text derivation ────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 4510 | // ── Waveform enrichment pass (`--waveform-scan`) ──────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5067 | // ── Genre helpers ──────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5116 | // ── MD5 hash ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5317 | // ── Waveform generation (symphonia-powered) ─────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5598 | // ── Chromaprint fingerprint (--fingerprint) ───────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5697 | // ── Sampled hashing (threshold hybrid) ────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 5960 | // ── Album art (V48 multi-art) ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 6262 | // ── Image compression ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | rust-parser/src/main.rs | 6299 | // ── Utilities ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | webapp/velvet/app.js | 10133 | // ── REPLAYGAIN ──────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | webapp/velvet/app.js | 10143 | // ── WAVEFORM SCRUBBER ───────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | webapp/velvet/app.js | 10144 | // ── WAVEFORM LOCALSTORAGE CACHE ─────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 4 | // ── STATE ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 91 | // ── Wrapped play tracking ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 157 | // ── HELPERS ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 376 | // ── QUEUE PERSISTENCE ─────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 508 | // ── API ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 527 | // ── NORMALIZE SONG ──────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 546 | // ── RATING HELPERS ──────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 568 | // ── ARTIST NORMALIZATION ────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 592 | // ── PLAYER ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1262 | // ── ON-DEMAND ART FETCH ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1294 | // ── QUEUE UI ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1383 | // ── One-time queue event-listener setup ────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1460 | // ── HIGHLIGHT ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1473 | // ── VIEW HELPERS ────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1516 | // ── SONG ROWS ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1739 | // ── CONTEXT MENU ───────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1785 | // ── NOW PLAYING MODAL ────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1889 | // ── DEEZER ART IN NP MODAL ──────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1929 | // ── DIRECT-URL ART IN NP MODAL ──────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 1956 | // ── DISCOGS ART IN NP MODAL ─────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2011 | // ── EQUALIZER CONFIG ────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2034 | // ── MINI SPECTRUM (player bar) ────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2276 | // ── VU NEEDLE METERS (player bar) ───────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2552 | // ── Arc band: green → yellow → red ────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2570 | // ── Tick marks + labels ────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2636 | // ── Peak lamp ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2684 | // ── RTW 1206-style PPM (Peak Programme Meter) — horizontal ───────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2796 | // ── Brightness slider ───────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 2929 | // ── Ref-level knob ────────────────────────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3200 | // ── BUTTERCHURN VISUALIZER + SPECTRUM ──────────────────────── | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3435 | // ══ MODE 0 — Bar Spectrum ══════════════════════════════════ | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3449 | // ══ MODE 1 — Mirror Bars ══════════════════════════════════ | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3482 | // ══ MODE 2 — Radial ═══════════════════════════════════════ | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3517 | // ══ MODE 3 — Oscilloscope ═════════════════════════════════ | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3538 | // ══ MODE 4 — Waterfall / Spectrogram ═════════════════════ | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3581 | // ══ MODE 5 — Analog VU Needles ════════════════════════════ | COMMENT |
| 630 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | install.sh | 1 | #!/bin/sh | COMMENT |
| LOW | install.sh | 21 | # (app folders, command, menu entry / ~/Applications | COMMENT |
| LOW | install.sh | 161 | # ONE per-user login item by app name ("mStream"), so a second copy of | COMMENT |
| LOW | install.sh | 381 | if command -v ps >/dev/null 2>&1; then | COMMENT |
| LOW | install.sh | 501 | # so a path with a space survives the launcher's word split. | COMMENT |
| LOW | cli-boot-wrapper.js | 21 | // src/util/boot-config.js): source/npm runs keep appRoot/save/conf/... | COMMENT |
| LOW | cli-boot-wrapper.js | 41 | COMMENT | |
| LOW | test/smoke/update-watchdog-smoke.sh | 1 | #!/bin/sh | COMMENT |
| LOW | test/smoke/update-apply-smoke.sh | 1 | #!/bin/sh | COMMENT |
| LOW | test/smoke/docker/compose.smoke.yaml | 1 | # All-Docker smoke compose: mStream in a container, talking to the | COMMENT |
| LOW | test/smoke/docker/README.md | 41 | docker compose -f test/smoke/docker/compose.smoke.yaml up --build -d | COMMENT |
| LOW | test/smoke/docker/p2p-sidecar-volume-smoke.sh | 1 | #!/bin/bash | COMMENT |
| LOW | test/smoke/docker/p2p-sidecar-volume-smoke.sh | 21 | # | COMMENT |
| LOW | rust-parser/Cargo.toml | 41 | "isomp4", | COMMENT |
| LOW | rust-parser/Cargo.toml | 61 | rusty-chromaprint = "0.3" | COMMENT |
| LOW | rust-parser/src/main.rs | 41 | // (containers that lie about their length no longer stretch the waveform) | COMMENT |
| LOW | rust-parser/src/main.rs | 81 | // the cache dir). The field stays so payloads from servers that | COMMENT |
| LOW | rust-parser/src/main.rs | 101 | // changed to match in this release. | COMMENT |
| LOW | rust-parser/src/main.rs | 121 | hash_sample_threshold: Option<u64>, | COMMENT |
| LOW | rust-parser/src/main.rs | 141 | // whole library" — backwards compatible with every prior caller. | COMMENT |
| LOW | rust-parser/src/main.rs | 161 | // server drives a newer binary — serde just defaults the missing | COMMENT |
| LOW | rust-parser/src/main.rs | 181 | // .max(1): a zero threshold would sample EVERY file (u64 >= 0 is | COMMENT |
| LOW | rust-parser/src/main.rs | 221 | // A "dot entry" is hidden-by-convention: a SINGLE leading dot. Names | COMMENT |
| LOW | rust-parser/src/main.rs | 281 | // equals the current scan's id (the boot migration rescan reuses one | COMMENT |
| LOW | rust-parser/src/main.rs | 301 | // CPU-heavy stages: file read, lofty tag parse, MD5 hashes, album-art | COMMENT |
| LOW | rust-parser/src/main.rs | 381 | COMMENT | |
| LOW | rust-parser/src/main.rs | 401 | old_hash_v: Option<i64>, | COMMENT |
| LOW | rust-parser/src/main.rs | 441 | prio_rank: usize, // index in FOLDER_PRIORITY; usize::MAX if not a cover name | COMMENT |
| LOW | rust-parser/src/main.rs | 461 | Extracted(Box<ExtractedTrack>), | COMMENT |
| LOW | rust-parser/src/main.rs | 481 | // Half-of-cores leaves headroom for the live server during a long | COMMENT |
| LOW | rust-parser/src/main.rs | 501 | std::thread::available_parallelism() | COMMENT |
| LOW | rust-parser/src/main.rs | 561 | // InvalidColumnType, killing the ENTIRE scan over one | COMMENT |
| LOW | rust-parser/src/main.rs | 641 | } | COMMENT |
| LOW | rust-parser/src/main.rs | 681 | } | COMMENT |
| LOW | rust-parser/src/main.rs | 821 | // this line makes that signature mean what it says: the binary itself | COMMENT |
| LOW | rust-parser/src/main.rs | 841 | // to exit code 3 (matching src/db/scanner.mjs). | COMMENT |
| LOW | rust-parser/src/main.rs | 901 | // | COMMENT |
| LOW | rust-parser/src/main.rs | 921 | // NotFound proves absence; anything else fails closed (keep). A path | COMMENT |
| LOW | rust-parser/src/main.rs | 1181 | // library, then same basename, then lowest (library_id, filepath) — so | COMMENT |
| LOW | rust-parser/src/main.rs | 1341 | } | COMMENT |
| LOW | rust-parser/src/main.rs | 1361 | // across chunks) so the scanComplete counts stay accurate. | COMMENT |
| LOW | rust-parser/src/main.rs | 1381 | // so main() maps them to exit 3. | COMMENT |
| LOW | rust-parser/src/main.rs | 1401 | // subtree this scan; neither delete nor claim it was seen); | COMMENT |
| LOW | rust-parser/src/main.rs | 1421 | let root = Path::new(library_root); | COMMENT |
| LOW | rust-parser/src/main.rs | 1681 | "Warning: {} stale-candidate row(s) left untouched because their subtree \ | COMMENT |
| LOW | rust-parser/src/main.rs | 1701 | // WRITER_YIELD: after a batch that hit the cap (the channel still had | COMMENT |
| LOW | rust-parser/src/main.rs | 1741 | COMMENT | |
| LOW | rust-parser/src/main.rs | 1821 | let dir_file_cache: Mutex<HashMap<PathBuf, DirListing>> = Mutex::new(HashMap::new()); | COMMENT |
| LOW | rust-parser/src/main.rs | 1841 | let genre_cache: Mutex<HashMap<String, i64>> = Mutex::new(HashMap::new()); | COMMENT |
| LOW | rust-parser/src/main.rs | 1881 | // over the list and no throwaway String allocation per file. File | COMMENT |
| LOW | rust-parser/src/main.rs | 1961 | rusqlite::params![config.scan_id, config.library_id, config.vpath, expected_files], | COMMENT |
| LOW | rust-parser/src/main.rs | 1981 | // outcome as the old unstamped-row path, warning included. | COMMENT |
| LOW | rust-parser/src/main.rs | 2001 | // doesn't treat it as a real error — anything on stderr without a | COMMENT |
| LOW | rust-parser/src/main.rs | 2121 | } else { | COMMENT |
| LOW | rust-parser/src/main.rs | 2201 | drop(tx); | COMMENT |
| LOW | rust-parser/src/main.rs | 2241 | let mut batch: u64 = 0; | COMMENT |
| LOW | rust-parser/src/main.rs | 2261 | // UPDATE: the dominant write cost of a no-op | COMMENT |
| LOW | rust-parser/src/main.rs | 2301 | let _ = conn.execute("RELEASE sp", []); | COMMENT |
| LOW | rust-parser/src/main.rs | 2361 | match rx.try_recv() { | COMMENT |
| LOW | rust-parser/src/main.rs | 2381 | // rollback (one batch of display lag), and an UPDATE | COMMENT |
| 613 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | webapp/velvet/assets/js/mstream.js | 138 | function renderFileWithMetadataHtml(filepath, id, metadata) { | CODE |
| LOW | webapp/velvet/assets/js/lib/qr.js | 513 | function getAlignmentPatternPositions() { | CODE |
| LOW | webapp/velvet/alpha/m.js | 137 | function renderFileWithMetadataHtml(filepath, id, metadata) { | CODE |
| LOW | webapp/assets/js/lib/qr.js | 513 | function getAlignmentPatternPositions() { | CODE |
| LOW | webapp/alpha/m.js | 147 | function renderFileWithMetadataHtml(filepath, lokiId, metadata) { | CODE |
| LOW | webapp/alpha/m.js | 1469 | function sanitiseTorrentPathSegment(s) { | CODE |
| LOW | webapp/alpha/m.js | 1881 | function updateAddTorrentPathPreview() { | CODE |
| LOW | webapp/alpha/m.js | 3453 | async function refreshSubsonicPasswordStatus() { | CODE |
| LOW | webapp/alpha/m.js | 3470 | async function setSubsonicPasswordFromForm() { | CODE |
| LOW | webapp/alpha/m.js | 3483 | async function clearSubsonicPasswordFromForm() { | CODE |
| LOW | webapp/alpha/m.js | 3496 | async function refreshSubsonicApiKeyList() { | CODE |
| LOW | webapp/alpha/m.js | 3518 | async function createSubsonicApiKeyFromForm() { | CODE |
| LOW | src/util/boot-config.js | 104 | export async function ensureDesktopDefaultConfig(resolved, { quickConnectOffByDefault = false } = {}) { | CODE |
| LOW | src/util/admin.js | 698 | export async function editDiscoveryServerDescription(val) { | CODE |
| LOW | src/util/admin.js | 829 | export async function editAutoAlbumArtWriteToFolder(val) { | CODE |
| LOW | src/util/admin.js | 845 | export async function editAlbumArtWriteToFolder(val) { | CODE |
| LOW | src/state/config.js | 36 | export function deriveModelCacheDirectory(dbDirectory) { | CODE |
| LOW | src/torrent/constants.js | 127 | export function clientNeedsPadFilesOnDisk(clientType) { | CODE |
| LOW | src/torrent/path-probe.js | 551 | export async function daemonKnownPathsCandidates(vpath, creds, clientType, memo) { | CODE |
| LOW | src/torrent/path-probe.js | 593 | export async function symlinkAndRealpathCandidates(vpath) { | CODE |
| LOW | src/torrent/vpath-sweep.js | 33 | export async function sweepVpathsForActiveClient(libraries) { | CODE |
| LOW | src/db/discovery-features-lib.js | 202 | function rethrowIfCacheDirUnwritable(err, modelCacheDir) { | CODE |
| LOW | src/db/discovery-db.js | 402 | export function applyHashTransitionGroups(groups) { | CODE |
| LOW | src/db/manager.js | 742 | export function getBackupDestinationsByLibrary(libraryId, { triggerType, enabledOnly = true } = {}) { | CODE |
| LOW | src/db/manager.js | 756 | export function getBackupDestinationsByTrigger(triggerType) { | CODE |
| LOW | src/db/manager.js | 909 | export function markStaleBackupRunsFailed(excludeHistoryId = null) { | CODE |
| LOW | src/db/manager.js | 989 | export function getLastCountedBackupBefore(destinationId, beforeHistoryId) { | CODE |
| LOW | src/db/federation.js | 94 | export function getFederationKeyLibraries(keyId) { | CODE |
| LOW | src/db/federation.js | 111 | export function bindFederationKeyEndpoint(id, endpointId) { | CODE |
| LOW | src/db/federation.js | 121 | export function resetFederationKeyBinding(id) { | CODE |
| LOW | src/db/federation.js | 134 | export function touchFederationKeyLastUsed(id) { | CODE |
| LOW | src/db/federation.js | 196 | export function updateFederationPeerStatus(id, status) { | CODE |
| LOW | src/db/federation.js | 207 | export function setFederationPeerUseDiscovery(id, enabled) { | CODE |
| LOW | src/db/task-queue.js | 78 | export function setOnScanCompleteCallback(fn) { onScanCompleteCallback = fn; } | CODE |
| LOW | src/db/task-queue.js | 435 | function checkQueueDrainedSideEffects() { | CODE |
| LOW | src/db/task-queue.js | 473 | async function applyHashTransitionsInner() { | CODE |
| LOW | src/db/task-queue.js | 605 | function checkQueueDrainedSideEffectsInner() { | CODE |
| LOW | src/db/task-queue.js | 1268 | async function runWaveformFfmpegFallback() { | CODE |
| LOW | src/db/task-queue.js | 1699 | export function maybeEnqueueAudioAnalysis() { | CODE |
| LOW | src/db/task-queue.js | 2468 | export function cancelBackupsForDestination(destinationId) { | CODE |
| LOW | src/api/federation-auth.js | 69 | export function authenticateFederationKey(key, req) { | CODE |
| LOW | src/api/server-playback.js | 29 | export async function refreshDetectedCliPlayers() { | CODE |
| LOW | src/api/scrobbler.js | 57 | export async function fetchLastfmSimilarArtists(artist, apiKey) { | CODE |
| LOW | src/api/subsonic/handlers.js | 2500 | export function getOpenSubsonicExtensions(req, res) { | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | webapp/torrent/index.js | 353 | // Step 1: seed-existing check unless the user opted out. | COMMENT |
| LOW | webapp/torrent/index.js | 434 | // Step 2: /torrent/add. | COMMENT |
| LOW | src/torrent/tag-probe.js | 119 | // Step 1: add paused. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 138 | // Step 2: set file priorities. Skip everything except the target. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 141 | // Step 3: resume. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 144 | // Step 4: poll for bytes. | COMMENT |
| LOW | src/torrent/tag-probe.js | 179 | // Step 7: always clean up. delete-local-data: true makes the | COMMENT |
| LOW | src/api/torrent.js | 237 | // Step 1: Content-Length pre-check. Reject before reading bytes. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 2108 | // Step 2: full projection for a page of album ids, in page order. Column | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3443 | // Step 1: local. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3454 | // Step 2: read-only cache fallback. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3466 | // Step 3: nothing to serve. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | webapp/torrent/index.js | 353 | // Step 1: seed-existing check unless the user opted out. | COMMENT |
| LOW | src/torrent/tag-probe.js | 119 | // Step 1: add paused. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 138 | // Step 2: set file priorities. Skip everything except the target. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 141 | // Step 3: resume. | COMMENT |
| LOW⚡ | src/torrent/tag-probe.js | 144 | // Step 4: poll for bytes. | COMMENT |
| LOW | src/torrent/tag-probe.js | 179 | // Step 7: always clean up. delete-local-data: true makes the | COMMENT |
| LOW | src/api/torrent.js | 237 | // Step 1: Content-Length pre-check. Reject before reading bytes. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 2108 | // Step 2: full projection for a page of album ids, in page order. Column | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3443 | // Step 1: local. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3454 | // Step 2: read-only cache fallback. | COMMENT |
| LOW | src/api/subsonic/handlers.js | 3466 | // Step 3: nothing to serve. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | webapp/index.html | 106 | <input id="spath_playlist_name" autocomplete="off" type="text" required placeholder="Enter your playlist n | CODE |
| LOW | webapp/index.html | 131 | <textarea id="share-textarea" autocomplete="off" rows="8" cols="60" placeholder="Your URL will be put here" re | CODE |
| LOW | webapp/index.html | 185 | <input id="playlist_name" autocomplete="off" type="text" required placeholder="Enter your playlist name" pat | CODE |
| LOW | webapp/index.html | 219 | <input id="new-live-playlist-name" type="text" name="live-queue-name" placeholder="Playlist Name" autoco | CODE |
| LOW | webapp/index.html | 253 | <input autocomplete="off" id="new_playlist_name" type="text" required placeholder="Enter your playlist name" | CODE |
| LOW | webapp/index.html | 291 | <input id="ytdl_url" autocomplete="off" type="url" required placeholder="Enter URL" style="color:#fff;" da | CODE |
| LOW | webapp/index.html | 350 | <input id="mkdir_name" autocomplete="off" type="text" required placeholder="Folder name" pattern="[a-zA-Z0-9 | CODE |
| LOW | webapp/index.html | 807 | <input id="localSearchBar" onkeyup="runLocalSearch(this)" type="text" placeholder="Search List" autocomplete | CODE |
| LOW | webapp/velvet/assets/js/lib/vue2.js | 11 | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define | CODE |
| LOW | webapp/velvet/assets/js/lib/materialize.js | 6 | var _get=function t(e,i,n){null===e&&(e=Function.prototype);var s=Object.getOwnPropertyDescriptor(e,i);if(void 0===s){va | CODE |
| LOW | webapp/subsonic/assets/index-Bu0XnV9O.js | 5 | */var Ee=Object.freeze({}),wt=Array.isArray;function mt(e){return e==null}function j(e){return e!=null}function Gt(e){r | COMMENT |
| LOW | webapp/subsonic/assets/index-Bu0XnV9O.js | 42 | */const t=Object.freeze({}),r=Array.isArray;function n(i){return i==null}function a(i){return i!=null}function s(i){ret | COMMENT |
| LOW | webapp/assets/js/lib/vue2.js | 11 | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define | CODE |
| LOW | webapp/assets/js/lib/materialize.js | 6 | var _get=function t(e,i,n){null===e&&(e=Function.prototype);var s=Object.getOwnPropertyDescriptor(e,i);if(void 0===s){va | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | test/smoke/docker/compose.smoke.yaml | 28 | # Host port 8915 so the smoke harness can hit mStream without | COMMENT |
| MEDIUM | test/cli-audio/entrypoint.sh | 3 | # then hands off to the Node routing harness. | COMMENT |
| MEDIUM | webapp/velvet/app.js | 3880 | alpha = 0.35 + (1 - timeUntil / 2.5) * 0.65; // 0.35 → 1.0 (seamless into active) | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | .github/workflows/build-bun.yml | 1398 | # This file is LOAD-BEARING: the end-of-smoke asserts require the | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | src/state/config.js | 513 | // invisibly. See discovery-catalog.pruneStalePeers for the guardrails. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | test/smoke/docker/p2p-sidecar-volume-smoke.sh | 28 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | src/state/federation-requests.js | 427 | function handleRequest(from, payload) { | CODE |