Use matrix_sdk_common::executor::spawn instead of tokio::spawn
parent
971cdf37f6
commit
ce0cb273bb
|
@ -2130,7 +2130,11 @@ impl Client {
|
|||
};
|
||||
|
||||
for notification in room_notifications {
|
||||
tokio::spawn((handler)(notification.clone(), room.clone(), self.clone()));
|
||||
matrix_sdk_common::executor::spawn((handler)(
|
||||
notification.clone(),
|
||||
room.clone(),
|
||||
self.clone(),
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -306,7 +306,7 @@ impl Client {
|
|||
room: room.clone(),
|
||||
raw: event.json(),
|
||||
};
|
||||
tokio::spawn((handler)(data));
|
||||
matrix_sdk_common::executor::spawn((handler)(data));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue