Skip to content

Commit

Permalink
Merge pull request #122 from whisperfish/change-servers
Browse files Browse the repository at this point in the history
 Remove old chat server hostnames.
  • Loading branch information
rubdos authored Jan 16, 2022
2 parents bb76ca5 + a82e077 commit 8523ba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsignal-service/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl From<&SignalServers> for ServiceConfiguration {
// configuration with the Signal API staging endpoints
// see: https://github.com/signalapp/Signal-Desktop/blob/master/config/default.json
SignalServers::Staging => ServiceConfiguration {
service_url: "https://textsecure-service-staging.whispersystems.org".parse().unwrap(),
service_url: "https://chat.staging.signal.org".parse().unwrap(),
storage_url:"https://storage-staging.signal.org".parse().unwrap(),
cdn_urls: {
let mut map = HashMap::new();
Expand All @@ -140,7 +140,7 @@ impl From<&SignalServers> for ServiceConfiguration {
// https://github.com/signalapp/Signal-Desktop/blob/master/config/production.json
SignalServers::Production => ServiceConfiguration {
service_url:
"https://textsecure-service.whispersystems.org".parse().unwrap(),
"https://chat.signal.org".parse().unwrap(),
storage_url: "https://storage.signal.org".parse().unwrap(),
cdn_urls: {
let mut map = HashMap::new();
Expand Down

0 comments on commit 8523ba2

Please sign in to comment.