[BUG]: 大量异常的写入
Author: Bug-ProofCreated Sep 11, 2026Updated Sep 17, 2026
Labelsbug
Description
我的电脑
uptime
16:08 up 8 days, 18:34, 2 users, load averages: 4.24 3.77 3.50Mortix-next log也显示
[2026-09-02][21:35:53][INFO][motrix_next_lib] setup: is_autostart=true auto_hide_window=true → should_hide=true (window will stay hidden)
[2026-09-02][21:35:55][INFO][webview:info@tauri://localhost/assets/main-2l9k7HDV.js:7:3661] [Engine] Rust on_engine_ready completed: options synced, services spawned问题在于,我在此期间根本没有进行过大型下载任务
DB="$HOME/Library/Application Support/com.motrix.next/history.db"
sqlite3 -header -column "file:$DB?mode=ro" "
SELECT
COUNT(*) AS tasks,
ROUND(SUM(total_length) / 1073741824.0, 3) AS total_GiB
FROM download_history
WHERE datetime(added_at) >= datetime('2026-09-02 13:35:00');
"
tasks total_GiB
----- ---------
10 0.302 sqlite3 -header -column "file:$DB?mode=ro" "
SELECT
added_at,
ROUND(total_length / 1073741824.0, 3) AS GiB,
name
FROM download_history
WHERE datetime(added_at) >= datetime('2026-09-02 13:35:00')
ORDER BY datetime(added_at);
"
added_at GiB name
------------------------ ----- -----------------------------------
2026-09-03T04:08:03.045Z 0.036 macOS.arm64.Release.-.installer.zip
2026-09-03T04:11:53.166Z 0.036 Aegisub-3.5.0-arm64.dmg
2026-09-03T10:02:48.514Z 0.018 WWDC_v7.5-1044.dmg
2026-09-08T00:36:20.393Z 0.03 rime-wanxiang-lite.zip
2026-09-08T00:48:26.808Z 0.029 rime-wanxiang-base.zip
2026-09-08T05:00:43.464Z 0.007 Aegisub-master.zip
2026-09-08T05:01:09.602Z 0.019 subtitleedit-main.zip
2026-09-09T00:54:07.240Z 0.07 macparakeet-main.zip
2026-09-09T00:55:32.266Z 0.024 wavesubs-main.zip
2026-09-09T03:03:51.462Z 0.03 Fork-2.66.7.dmg 另外我发现我的自动检查更新在设置为Every startup Last checked停留在8/17/2026, 11:11:32 AM 没有帮我检查过,导致没有更新到目前最新的v3.9.9
Motrix Next Version
Motrix Next v3.9.7
Issue Source
Motrix Next App
Platform
macOS (Apple Silicon)
OS Version
15.7.9
Steps to Reproduce
1
Diagnostic Logs
Screenshots
1
Validations
- I have searched existing issues and tested with the latest beta release when possible.
- I have uploaded the exported diagnostic
.zipdirectly, or kept the same ZIP structure after redaction. - This is a reproducible Motrix Next desktop-app bug. Questions belong in GitHub Discussions, browser-extension-only issues belong in motrix-next-extension, and engine-only issues belong in aria2-next.
Source: AnInsomniacy/motrix-next