diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-11 22:00:40 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-11 22:00:40 -0500 |
commit | 7cae35947efb1d00d7c8b50f7cce1a6ed62178b7 (patch) | |
tree | 839f093ea5e839d3435cd9d13fe426b3643ac8d4 /plugins | |
parent | e1483ae1e915600c73a55e0e61c88893eeda1e0f (diff) | |
download | libretube-7cae35947efb1d00d7c8b50f7cce1a6ed62178b7.tar.lz libretube-7cae35947efb1d00d7c8b50f7cce1a6ed62178b7.tar.xz libretube-7cae35947efb1d00d7c8b50f7cce1a6ed62178b7.zip |
Improved thumbnail in article, according to platform
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tipue-search/tipue_search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tipue-search/tipue_search.py b/plugins/tipue-search/tipue_search.py index 1ac3ee5..a55c91c 100644 --- a/plugins/tipue-search/tipue_search.py +++ b/plugins/tipue-search/tipue_search.py @@ -76,7 +76,7 @@ class Tipue_Search_JSON_Generator(object): video_image = article.image if getattr( article, 'image', 'None') != 'None' else '' - url_image = "%s/%s/../wp-content/uploads/article/poster/%s" % ( + url_image = "%s/%s/../wp-content/uploads/article/thumbnail/%s" % ( base_url, self.tstatic, video_image ) |