Skip to content

Commit

Permalink
Update support email.
Browse files Browse the repository at this point in the history
  • Loading branch information
derickplum committed Aug 13, 2020
1 parent b81c937 commit af88569
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CRYPTOFINANCE.gs
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ function ShowAPIKeyDataAvaibilityPrompt() {
else if (user_input && (user_input.length == 36 || user_input.length == 20)) {
userProperties.setProperty("APIKEYDATAAVAIBILITYSERVICE", user_input);
ui.alert('API Key successfully saved',
'Your requests will now be sent to the CRYPTOFINANCE Data Availability Service.\nWhenever an exchange API is overloaded you will keep getting data.\n\nBe sure to refresh the cells: Select cells calling CRYPTOFINANCE (or all with Cmd+A), hit Delete key, wait 3sec,\nand then undo the delete with Cmd+Z.\n(If you\'re on Windows use the Ctrl key instead of Cmd)\n\nYou can contact support@cryptofinance.ai if you have any question.'
'Your requests will now be sent to the CRYPTOFINANCE Data Availability Service.\nWhenever an exchange API is overloaded you will keep getting data.\n\nBe sure to refresh the cells: Select cells calling CRYPTOFINANCE (or all with Cmd+A), hit Delete key, wait 3sec,\nand then undo the delete with Cmd+Z.\n(If you\'re on Windows use the Ctrl key instead of Cmd)\n\nYou can contact support@cryptofinance.zendesk.com if you have any question.'
,ui.ButtonSet.OK);
}
else if (user_input) {
ui.alert('API Key not valid',
'The API Key you entered appears to be not valid.\nIf you believe this is an error, contact support@cryptofinance.ai.'
'The API Key you entered appears to be not valid.\nIf you believe this is an error, contact support@cryptofinance.zendesk.com.'
,ui.ButtonSet.OK);
}
}
Expand Down Expand Up @@ -103,7 +103,7 @@ function ShowAPIKeyHistPlanPrompt() {
}
else if (text) {
ui.alert('API Key not valid',
'The API Key you entered appears to be not valid.\nIf you believe this is an error, contact support@cryptofinance.ai.'
'The API Key you entered appears to be not valid.\nIf you believe this is an error, contact support@cryptofinance.zendesk.com.'
,ui.ButtonSet.OK);
}
}
Expand All @@ -118,7 +118,7 @@ function ShowDoc() {
ui.alert("Documentation and Info",
'Official website: https://cryptofinance.ai\n\
Documentation: https://cryptofinance.ai/docs/\n\
Support email: support@cryptofinance.ai',
Support email: support@cryptofinance.zendesk.com',
ui.ButtonSet.OK)
}

Expand Down

0 comments on commit af88569

Please sign in to comment.