forked from rc/aircox
path bug
This commit is contained in:
@ -98,13 +98,10 @@ class Program(Page):
|
||||
Return a Program from the given path. We assume the path has been
|
||||
given in a previous time by this model (Program.path getter).
|
||||
"""
|
||||
if path.startswith(conf.MEDIA_ROOT):
|
||||
path = path.replace(conf.MEDIA_ROOT + '/', '')
|
||||
path = path.replace(settings.AIRCOX_PROGRAMS_DIR, '')
|
||||
|
||||
if path.startswith(settings.AIRCOX_PROGRAMS_DIR):
|
||||
path = path.replace(settings.AIRCOX_PROGRAMS_DIR + '/', '')
|
||||
while path[0] == '/':
|
||||
path = path[1:]
|
||||
|
||||
path = path[:path.index('/')]
|
||||
return cl.objects.filter(slug=path.replace('_','-')).first()
|
||||
|
||||
|
Reference in New Issue
Block a user