mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-17 22:13:29 -06:00
undo column sizing, fix linearly expanding datasets (lag), fix episode ranges being incorrect, more print statements
This commit is contained in:
@@ -18,7 +18,7 @@ def viewSeason(season):
|
||||
def viewEpisode(season, episode):
|
||||
e = Episode.query.filter_by(season_id=season, number=episode).first_or_404()
|
||||
if not e.built:
|
||||
print("Rebuilding")
|
||||
print(f"Rebuilding s{season} e{episode}")
|
||||
e.build()
|
||||
return render_template("episode.html", episode=e, seasons=Season.query.all())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user