fix build

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-04-19 17:26:36 +08:00
parent f7e2938e6b
commit 5c42b4a1e8
7 changed files with 25 additions and 21 deletions

View File

@@ -1813,7 +1813,7 @@ impl Connection {
#[cfg(all(feature = "flutter", feature = "plugin_framework"))]
#[cfg(not(any(target_os = "android", target_os = "ios")))]
Some(misc::Union::PluginRequest(p)) => {
if let Some(msg) = create::plugin::handle_client_event(&p.id, &p.content) {
if let Some(msg) = crate::plugin::handle_client_event(&p.id, &p.content) {
self.send(msg).await;
}
}