Commit 0f03c3efa4cf642148740c0c7461e4412b84abc0
1 parent
1bca47c6
Exists in
master
Correção da URL do thumbnail da aplicação.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
corretor.py
... | ... | @@ -40,7 +40,7 @@ class Corretor: |
40 | 40 | def __update_project_info(self, project): |
41 | 41 | template = self.env.get_template('template.html') |
42 | 42 | project.info['task_presenter'] = template.render(server=self.config['HOST_STATIC_FILES_ENDPOINT'], server_backend=self.config['HOST_ENDPOINT'], app_shortname=self.config['PYBOSSA_APP_SHORT_NAME']) |
43 | - project.info['thumbnail'] = self.config['HOST_ENDPOINT'] + "/img/thumbnail.png" | |
43 | + project.info['thumbnail'] = self.config['HOST_STATIC_FILES_ENDPOINT'] + "/img/thumbnail.png" | |
44 | 44 | project.info['sched'] = "incremental" |
45 | 45 | project.allow_anonymous_contributors = False |
46 | 46 | #project.published = True | ... | ... |