Browse Source

Fixed not being able to go to profiles from dashboard.

KrisVos130 9 năm trước cách đây
mục cha
commit
9790221a06
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/client/client.js

+ 1 - 1
app/client/client.js

@@ -56,7 +56,7 @@ Template.profile.helpers({
 });
 
 Template.profile.onCreated(function() {
-    var parts = location.href.split('/');
+    var parts = Router.current().url.split('/');
     var username = parts.pop();
     Session.set("loaded", false);
     Meteor.subscribe("userProfiles", function() {