alpha
Login
or
Join now
hotsocket.fyi
/
niri
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
remove source from memory query
author
nekomimi.pet
date
2 months ago
(May 1, 2026, 4:11 AM -0400)
commit
3029c5bd
3029c5bd8cd424bd29c5556fbed2f86cd5782444
parent
5412a368
5412a368b97db5fd3b76185307bcce6cf7a00412
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
memory.ts
-1
src/memory.ts
View file
Reviewed
···
616
616
function memoryQueryToString(parts: MemoryQueryParts): string {
617
617
const pieces = [
618
618
parts.sender ? `@${parts.sender}` : null,
619
619
-
parts.source,
620
619
parts.body || null,
621
620
].filter((value): value is string => Boolean(value && value.trim()))
622
621
return pieces.join("\n")