From 8a036df1b4139d3ff10caf09f130ee8c02c9e26c Mon Sep 17 00:00:00 2001 From: poignatov Date: Fri, 6 Feb 2026 15:22:09 +0300 Subject: [PATCH] =?UTF-8?q?4.24.1:=20=D0=A4=D0=B8=D0=BB=D1=8C=D1=82=D1=80?= =?UTF-8?q?=D0=B0=D1=86=D0=B8=D1=8F=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=B2=20=D0=BE=D1=82=D1=81=D0=BB=D0=B5=D0=B6?= =?UTF-8?q?=D0=B8=D0=B2=D0=B0=D0=BD=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION | 2 +- play-life-backend/main.go | 3 ++- play-life-web/package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 252fdf2..6055679 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.24.0 +4.24.1 diff --git a/play-life-backend/main.go b/play-life-backend/main.go index e9b69d0..ae79ddb 100644 --- a/play-life-backend/main.go +++ b/play-life-backend/main.go @@ -14893,7 +14893,7 @@ func (a *App) getWeeklyStatsDataForUserAndWeek(userID int, year int, week int) ( p.color FROM projects p - LEFT JOIN + INNER JOIN weekly_goals wg ON wg.project_id = p.id AND wg.goal_year = $2 AND wg.goal_week = $3 @@ -14904,6 +14904,7 @@ func (a *App) getWeeklyStatsDataForUserAndWeek(userID int, year int, week int) ( AND $3 = wr.report_week WHERE p.deleted = FALSE AND p.user_id = $1 + AND wg.min_goal_score IS NOT NULL ORDER BY total_score DESC ` diff --git a/play-life-web/package.json b/play-life-web/package.json index 940c7ab..2d153d2 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "4.24.0", + "version": "4.24.1", "type": "module", "scripts": { "dev": "vite",