소스 검색

Fix bug where share-by-powerbox could fail if the recipient's display
name was the same as an existing user's handle.

David Renshaw 8 년 전
부모
커밋
89eb156529
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      sandstorm-pkgdef.capnp
  2. 1 1
      sandstorm.js

+ 2 - 2
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,

+ 1 - 1
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();