summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Renshaw <david@sandstorm.io>2016-11-08 09:47:36 -0500
committerDavid Renshaw <david@sandstorm.io>2016-11-08 09:47:36 -0500
commit89eb156529fb869312abc20544dbdfd843e3d88c (patch)
tree6dbcf048d24f1515cd07503a57459be8c8df877c
parentf11873e44a7772db3543b4a82e81c289a0bddcd2 (diff)
downloadwekan-89eb156529fb869312abc20544dbdfd843e3d88c.tar.gz
wekan-89eb156529fb869312abc20544dbdfd843e3d88c.tar.bz2
wekan-89eb156529fb869312abc20544dbdfd843e3d88c.zip
Fix bug where share-by-powerbox could fail if the recipient's display
name was the same as an existing user's handle.
-rw-r--r--sandstorm-pkgdef.capnp4
-rw-r--r--sandstorm.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 80b761e2..0aaaed56 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 = 13,
+ appVersion = 14,
# Increment this for every release.
- appMarketingVersion = (defaultText = "0.11.0~2016-11-07"),
+ appMarketingVersion = (defaultText = "0.11.0~2016-11-08"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/sandstorm.js b/sandstorm.js
index 5a800b24..07007be1 100644
--- a/sandstorm.js
+++ b/sandstorm.js
@@ -89,7 +89,7 @@ if (isSandstorm && Meteor.isServer) {
const login = Accounts.updateOrCreateUserFromExternalService(
'sandstorm', sandstormInfo,
- { profile: { name: sandstormInfo.name, fullname: sandstormInfo.name } });
+ { profile: { name: sandstormInfo.name } });
updateUserPermissions(login.userId, permissions);
done();