mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-16 12:13:14 +00:00
23402e27e1
Rather than only checking for an available update on app init, the check for updates now performs the check once every 24 hours on the first request sent after that period. This also now catches the requests.exceptions.ConnectionError that is thrown if the app is initialized without an active internet connection. Fixes #649
10 lines
334 B
HTML
10 lines
334 B
HTML
<footer>
|
|
<p class="footer">
|
|
Whoogle Search v{{ version_number }} ||
|
|
<a class="link" href="https://github.com/benbusby/whoogle-search">{{ translation['github-link'] }}</a>
|
|
{% if has_update %}
|
|
|| <span class="update_available">Update Available 🟢</span>
|
|
{% endif %}
|
|
</p>
|
|
</footer>
|