fix: use bambu's network plugin (#14688)

Fixes a regression where Timelapse and SD Card media failed to load on Bambu devices. 

During the dual-cloud-agent refactor, NetworkAgent was updated to require an explicit provider argument. The call site in MediaFilePanel::fetchUrl() was missing this argument, causing it to silently fall back to the default Orca stub instead of routing to the Bambu network plugin. 

This explicitly passes wxGetApp().get_printer_cloud_provider() to get_camera_url to correctly route the request and restore functionality.
This commit is contained in:
nvs1_cinci
2026-07-10 03:23:30 -04:00
committed by GitHub
parent 79d51b31b5
commit e56cdd707f

View File

@@ -520,7 +520,7 @@ void MediaFilePanel::fetchUrl(boost::weak_ptr<PrinterFileSystem> wfs)
fs->SetUrl(res);
}
});
});
}, wxGetApp().get_printer_cloud_provider());
}
}