Save listeners in db
This commit is contained in:
		
							parent
							
								
									4c373e562b
								
							
						
					
					
						commit
						4fba2f317d
					
				
					 1 changed files with 11 additions and 9 deletions
				
			
		|  | @ -165,12 +165,13 @@ async fn handle_follow( | |||
|         return Err(MyError::WrongActor(input.object.id().to_string())); | ||||
|     } | ||||
| 
 | ||||
|     if !is_listener && input.object.is(&my_id) { | ||||
|         let follow = generate_follow(state, &actor.id, &my_id)?; | ||||
| 
 | ||||
|     if !is_listener { | ||||
|         let inbox = actor.inbox().to_owned(); | ||||
|         db.add_listener(inbox).await?; | ||||
| 
 | ||||
|         // if following relay directly, not just following 'public', followback
 | ||||
|         if input.object.is(&my_id) { | ||||
|             let follow = generate_follow(state, &actor.id, &my_id)?; | ||||
|             let client2 = client.clone(); | ||||
|             let inbox = actor.inbox().clone(); | ||||
|             let follow2 = follow.clone(); | ||||
|  | @ -178,6 +179,7 @@ async fn handle_follow( | |||
|                 let _ = client2.deliver(inbox, &follow2).await; | ||||
|             }); | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     let accept = generate_accept_follow(state, &actor.id, &input.id, &my_id)?; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue