summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Renshaw <dwrenshaw@gmail.com>2016-11-15 15:01:33 -0500
committerGitHub <noreply@github.com>2016-11-15 15:01:33 -0500
commitafca7ce6dab51636b5a6bf9e50719c3d0dc47f4d (patch)
treead8dd2b52a5d4cb696e5579597d8e245bbb4b3bf
parent5657b6f8c76d615517953b6acb9e3481ec931e33 (diff)
parent693053555547d417322973ccefc3ef63c5a0f743 (diff)
downloadwekan-afca7ce6dab51636b5a6bf9e50719c3d0dc47f4d.tar.gz
wekan-afca7ce6dab51636b5a6bf9e50719c3d0dc47f4d.tar.bz2
wekan-afca7ce6dab51636b5a6bf9e50719c3d0dc47f4d.zip
Merge pull request #8 from dwrensha/sandstorm-restore-identity-bugfix
Sandstorm restore identity bugfix
-rw-r--r--sandstorm-pkgdef.capnp6
-rw-r--r--sandstorm.js5
2 files changed, 6 insertions, 5 deletions
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 0aaaed56..5c0961f8 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 14,
+ appVersion = 16,
# Increment this for every release.
- appMarketingVersion = (defaultText = "0.11.0~2016-11-08"),
+ appMarketingVersion = (defaultText = "0.11.0~2016-11-15"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
@@ -58,7 +58,7 @@ const pkgdef :Spk.PackageDefinition = (
),
website = "https://wekan.io",
- codeUrl = "https://github.com/wekan/wekan",
+ codeUrl = "https://github.com/wefork/wekan",
license = (openSource = mit),
categories = [productivity, office],
diff --git a/sandstorm.js b/sandstorm.js
index 07007be1..dc5b10d6 100644
--- a/sandstorm.js
+++ b/sandstorm.js
@@ -116,9 +116,10 @@ if (isSandstorm && Meteor.isServer) {
mentioned: !!user.mentioned,
subscribed: !!user.subscribed,
};
- }).catch(() => {
- // Ignore identities that fail to resolve. Probably they have lost access to the board.
});
+ }).catch(() => {
+ // Ignore identities that fail to restore. Either they were added before we set
+ // `saveIdentityCaps` to true, or they have lost access to the board.
});
})).then((maybeUsers) => {
const users = maybeUsers.filter((u) => !!u);