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
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,10 @@ VITE_PSTROTATOR_BASE_URL=/pstrotator
# Optional: HTTP endpoint for PstRotatorAz web interface (for proxy)
# Set this to the machine running PstRotatorAz (default shown below)
VITE_PSTROTATOR_TARGET=http://192.168.1.43:50004
# ===========================================
# N3FJP QSO RETENTION
# ===========================================

# How long the server keeps logged QSOs in memory (minutes)
# 1440 = 24 hours
N3FJP_QSO_RETENTION_MINUTES=1440
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8820,7 +8820,7 @@ function handleWSJTXMessage(msg, state) {
}

// ---- N3FJP Logged QSO relay (in-memory) ----
const N3FJP_QSO_RETENTION_MINUTES = parseInt(process.env.N3FJP_QSO_RETENTION_MINUTES || "15", 10);
const N3FJP_QSO_RETENTION_MINUTES = parseInt(process.env.N3FJP_QSO_RETENTION_MINUTES || "1440", 10);
let n3fjpQsos = [];

function pruneN3fjpQsos() {
Expand Down
Loading