mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-24 00:50:35 +00:00
Merge pull request #592 from mouse-reeve/local-paths
Fixes local paths with remote users
This commit is contained in:
commit
759a384852
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class BookWyrmModel(models.Model):
|
||||||
''' generate a url that resolves to the local object '''
|
''' generate a url that resolves to the local object '''
|
||||||
base_path = 'https://%s' % DOMAIN
|
base_path = 'https://%s' % DOMAIN
|
||||||
if hasattr(self, 'user'):
|
if hasattr(self, 'user'):
|
||||||
base_path = self.user.remote_id
|
base_path = '%s%s' % (base_path, self.user.local_path)
|
||||||
model_name = type(self).__name__.lower()
|
model_name = type(self).__name__.lower()
|
||||||
return '%s/%s/%d' % (base_path, model_name, self.id)
|
return '%s/%s/%d' % (base_path, model_name, self.id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue