diff --git a/liteshort.py b/liteshort.py index 0a6673b4d05a4861ddc3644c6e26102688dae307..3d76e7f9fa1cbb870f8d9afcb044a4b52a05f5c7 100644 --- a/liteshort.py +++ b/liteshort.py @@ -3,8 +3,9 @@ # This software is license under the MIT license. It should be included in your copy of this software. # A copy of the MIT license can be obtained at https://mit-license.org/ -from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, url_for +from flask import Flask, current_app, flash, g, jsonify, redirect, render_template, request, send_from_directory, url_for import bcrypt +import os import random import sqlite3 import time @@ -193,6 +194,12 @@ app.secret_key = app.config['secret_key'] app.config['SERVER_NAME'] = app.config['site_domain'] +@app.route('/favicon.ico') +def favicon(): + return send_from_directory(os.path.join(app.root_path, 'static'), + 'favicon.ico', mimetype='image/vnd.microsoft.icon') + + @app.route('/', subdomain=app.config['subdomain']) def main(): return response(request, True) diff --git a/templates/main.html b/templates/main.html index 10812ba2ad1586518b1b9e82740f1e116cf94ae4..5ae99012c090f2ef6333808fb93c6e025a6af854 100644 --- a/templates/main.html +++ b/templates/main.html @@ -9,7 +9,6 @@ A copy of the MIT license can be obtained at https://mit-license.org/