summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/install/Troubleshooting.md3
-rw-r--r--doc/integrations/webhooks/Incoming-Webhooks.md4
-rw-r--r--web/react/stores/browser_store.jsx4
3 files changed, 8 insertions, 3 deletions
diff --git a/doc/install/Troubleshooting.md b/doc/install/Troubleshooting.md
index 21839c86f..46efc61fa 100644
--- a/doc/install/Troubleshooting.md
+++ b/doc/install/Troubleshooting.md
@@ -12,5 +12,6 @@
- This error may appear when attempt to use a self-signed certificate to setup SSL, which is not yet supported by Mattermost. You can resolve this issue by setting up a load balancer like Ngnix. A ticket exists to [add support for self-signed certificates in future](x509: certificate signed by unknown authority).
##### Lost System Administrator account
- - If the System Administrator account becomes unavailable, a person leaving the organization for example, you can set a new system admin from the commandline using `./platform -assign_role -team_name="yourteam" -email="you@example.com" -role="system_admin"`
+ - If the System Administrator account becomes unavailable, a person leaving the organization for example, you can set a new system admin from the commandline using `./platform -assign_role -team_name="yourteam" -email="you@example.com" -role="system_admin"`.
+ - After assigning the role the user needs to log out and log back in before the System Administrator role is applied.
diff --git a/doc/integrations/webhooks/Incoming-Webhooks.md b/doc/integrations/webhooks/Incoming-Webhooks.md
index be17d6a8e..7340282be 100644
--- a/doc/integrations/webhooks/Incoming-Webhooks.md
+++ b/doc/integrations/webhooks/Incoming-Webhooks.md
@@ -90,3 +90,7 @@ As mentioned above, Mattermost makes it easy to take integrations written for Sl
To see samples and community contributions, please visit <http://mattermost.org/webhooks>.
+#### Limitations
+
+- The `attachments` payload used in Slack is not yet supported
+- Overriding of usernames does not yet apply to notifications
diff --git a/web/react/stores/browser_store.jsx b/web/react/stores/browser_store.jsx
index adaca44ee..75fb8aa3c 100644
--- a/web/react/stores/browser_store.jsx
+++ b/web/react/stores/browser_store.jsx
@@ -74,9 +74,9 @@ class BrowserStoreClass {
var result = null;
try {
if (this.isLocalStorageSupported()) {
- result = JSON.parse(getPrefix() + localStorage.getItem(name));
+ result = JSON.parse(localStorage.getItem(getPrefix() + name));
} else {
- result = JSON.parse(getPrefix() + sessionStorage.getItem(name));
+ result = JSON.parse(sessionStorage.getItem(getPrefix() + name));
}
} catch (err) {
result = null;