dev #2

Merged
candifloss merged 10 commits from dev into main 2024-09-27 10:06:26 +00:00
Showing only changes of commit 4dfa6e4d3d - Show all commits

View File

@ -3,7 +3,7 @@ use crate::notification::Notification;
use rson_rs::ser::to_string as rson_string;
impl Notification {
pub fn rson(&self) -> String {
rson_string(&self).unwrap()
pub fn rson(&self) -> Result<String, String> {
rson_string(self).map_err(|e| format!("Failed to serialize to RSON: {}", e))
}
}