]> Untitled Git - lemmy.git/commitdiff
Fix issue with user page reloading on resort.
authorDessalines <tyhou13@gmx.com>
Sun, 8 Dec 2019 20:23:11 +0000 (12:23 -0800)
committerDessalines <tyhou13@gmx.com>
Sun, 8 Dec 2019 20:23:11 +0000 (12:23 -0800)
- Fixes #361

ui/src/components/user.tsx

index b90f8167d81d51be06482239ae2e4e3893bfa96b..0aba995fb4b2315d890a2e60646e087073da543b 100644 (file)
@@ -180,7 +180,10 @@ export class User extends Component<any, UserState> {
 
   componentDidUpdate(lastProps: any, _lastState: UserState, _snapshot: any) {
     // Necessary if you are on a post and you click another post (same route)
-    if (lastProps.location.pathname !== lastProps.history.location.pathname) {
+    if (
+      lastProps.location.pathname.split('/')[2] !==
+      lastProps.history.location.pathname.split('/')[2]
+    ) {
       // Couldnt get a refresh working. This does for now.
       location.reload();
     }