Protocolbot
79774df456
fix: don't auto-fill source with @username when empty
Both frontend and backend were defaulting the source field to
@username when left empty. Now stores an empty string instead.
Frontend (app.js):
- saveProtocol: removed || '@' + currentUser.username fallback
- saveCollection: removed || '@' + currentUser.username fallback
Backend (api/index.php):
- Protocol create: ['source'] ?? '' instead of ?? ('@' . username)
- Collection create: ['source'] ?? '' instead of ?? ('@' . username)
2026-07-21 08:40:15 -06:00
..
2026-07-08 13:50:11 -06:00
2026-07-06 14:42:45 -06:00
2026-07-06 14:42:45 -06:00
2026-07-21 08:40:15 -06:00
2026-07-06 20:42:44 -06:00