Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .agents/scripts/contributor-activity-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ else:
") || query_result="[]"

# t1427: sqlite3 -json returns "" (not "[]") when no rows match.
if [[ -z "$query_result" || "${query_result:0:1}" != "[" ]]; then
if [[ "$query_result" != "["* ]]; then
query_result="[]"
fi

Expand Down
1 change: 0 additions & 1 deletion .agents/scripts/pulse-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1962,7 +1962,6 @@ ${worker_table}"
session_time_md="_Activity helper not installed._"
fi
# t1426: person-stats from hourly cache (see _refresh_person_stats_cache)
local slug_safe="${repo_slug//\//-}"
local ps_cache="${PERSON_STATS_CACHE_DIR}/person-stats-cache-${slug_safe}.md"
if [[ -f "$ps_cache" ]]; then
person_stats_md=$(cat "$ps_cache")
Expand Down
Loading