forked from cory/tildefriends
		
	ssb: Fix some SQL syntax for private messages. They need more work.
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
{
 | 
			
		||||
	"type": "tildefriends-app",
 | 
			
		||||
	"emoji": "🦀",
 | 
			
		||||
	"previous": "&Ph3a53rRidBNfYsfAtQKydoizUBCyh1Xl4I8XlzcQnk=.sha256"
 | 
			
		||||
	"previous": "&m5ZrkzoyAjv7AY6AukzVoWIyUFUL97uuDDWCtxCloAU=.sha256"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -147,12 +147,12 @@ class TfTabNewsFeedElement extends LitElement {
 | 
			
		||||
			result = await tfrpc.rpc.query(
 | 
			
		||||
				`
 | 
			
		||||
					SELECT TRUE AS is_primary, messages.rowid, messages.id, previous, author, sequence, timestamp, hash, json(content) AS content, signature
 | 
			
		||||
						FROM messages
 | 
			
		||||
						JOIN json_each(?1) AS following ON messages.author = following.value
 | 
			
		||||
						WHERE
 | 
			
		||||
							(?2 IS NULL OR (messages.timestamp >= ?2) AND messages.timestamp < ?3 AND
 | 
			
		||||
							json(messages.content) LIKE '"%'
 | 
			
		||||
						ORDER BY sequence DESC LIMIT 20
 | 
			
		||||
					FROM messages
 | 
			
		||||
					JOIN json_each(?1) AS following ON messages.author = following.value
 | 
			
		||||
					WHERE
 | 
			
		||||
						(?2 IS NULL OR (messages.timestamp >= ?2)) AND messages.timestamp < ?3 AND
 | 
			
		||||
						json(messages.content) LIKE '"%'
 | 
			
		||||
					ORDER BY messages.sequence DESC LIMIT 20
 | 
			
		||||
				`,
 | 
			
		||||
				[JSON.stringify(this.following), start_time, end_time]
 | 
			
		||||
			);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user