Skip to content

Commit

Permalink
fix(backend): change text returned for integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Jul 17, 2023
1 parent aeae77b commit 9fc6f20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/backend/src/miscellaneous/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3145,7 +3145,7 @@ impl MiscellaneousService {
yank_integrations.into_iter().for_each(|i| {
let description = match i.settings {
UserYankIntegrationSetting::Audiobookshelf { base_url, .. } => {
format!("Audiobookshelf connected to {}", base_url)
format!("Audiobookshelf URL: {}", base_url)
}
};
all_integrations.push(GraphqlUserIntegration {
Expand All @@ -3163,7 +3163,7 @@ impl MiscellaneousService {
sink_integrations.into_iter().for_each(|i| {
let description = match i.settings {
UserSinkIntegrationSetting::Jellyfin { slug } => {
format!("Connected to {}", slug)
format!("Jellyfin slug: {}", slug)
}
};
all_integrations.push(GraphqlUserIntegration {
Expand Down

0 comments on commit 9fc6f20

Please sign in to comment.