aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings/services/EditServiceForm.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/settings/services/EditServiceForm.js')
-rw-r--r--src/components/settings/services/EditServiceForm.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/settings/services/EditServiceForm.js b/src/components/settings/services/EditServiceForm.js
index 4ba2eb844..711b571e2 100644
--- a/src/components/settings/services/EditServiceForm.js
+++ b/src/components/settings/services/EditServiceForm.js
@@ -61,7 +61,7 @@ const messages = defineMessages({
61 }, 61 },
62 customUrlPremiumInfo: { 62 customUrlPremiumInfo: {
63 id: 'settings.service.form.customUrlPremiumInfo', 63 id: 'settings.service.form.customUrlPremiumInfo',
64 defaultMessage: '!!!To add self hosted services, you need a Franz Premium Supporter Account.', 64 defaultMessage: '!!!To add self hosted services, you need a Ferdi Premium Supporter Account.',
65 }, 65 },
66 customUrlUpgradeAccount: { 66 customUrlUpgradeAccount: {
67 id: 'settings.service.form.customUrlUpgradeAccount', 67 id: 'settings.service.form.customUrlUpgradeAccount',
@@ -101,11 +101,11 @@ const messages = defineMessages({
101 }, 101 },
102 proxyRestartInfo: { 102 proxyRestartInfo: {
103 id: 'settings.service.form.proxy.restartInfo', 103 id: 'settings.service.form.proxy.restartInfo',
104 defaultMessage: '!!!Please restart Franz after changing proxy Settings.', 104 defaultMessage: '!!!Please restart Ferdi after changing proxy Settings.',
105 }, 105 },
106 proxyInfo: { 106 proxyInfo: {
107 id: 'settings.service.form.proxy.info', 107 id: 'settings.service.form.proxy.info',
108 defaultMessage: '!!!Proxy settings will not be synchronized with the Franz servers.', 108 defaultMessage: '!!!Proxy settings will not be synchronized with the Ferdi servers.',
109 }, 109 },
110}); 110});
111 111
@@ -153,7 +153,7 @@ export default @observer class EditServiceForm extends Component {
153 const values = form.values(); 153 const values = form.values();
154 let isValid = true; 154 let isValid = true;
155 155
156 const files = form.$('customIcon').files; 156 const { files } = form.$('customIcon');
157 if (files) { 157 if (files) {
158 values.iconFile = files[0]; 158 values.iconFile = files[0];
159 } 159 }