mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-10-31 05:47:24 +01:00 
			
		
		
		
	Fetch avatars synchronous (whatsapp)
This commit is contained in:
		
							parent
							
								
									0205a67309
								
							
						
					
					
						commit
						1b9877fda4
					
				| @ -28,6 +28,8 @@ func (b *Bwhatsapp) handleMessage(message *events.Message) { | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	b.Log.Infof("Receiving message %#v", msg) | ||||
| 
 | ||||
| 	switch { | ||||
| 	case msg.Conversation != nil || msg.ExtendedTextMessage != nil: | ||||
| 		b.handleTextMessage(message.Info, msg) | ||||
|  | ||||
| @ -113,22 +113,22 @@ func (b *Bwhatsapp) Connect() error { | ||||
| 	} | ||||
| 
 | ||||
| 	// get user avatar asynchronously | ||||
| 	go func() { | ||||
| 		b.Log.Debug("Getting user avatars..") | ||||
| 	//	go func() { | ||||
| 	b.Log.Info("Getting user avatars..") | ||||
| 
 | ||||
| 		for jid := range b.users { | ||||
| 			info, err := b.GetProfilePicThumb(jid) | ||||
| 			if err != nil { | ||||
| 				b.Log.Warnf("Could not get profile photo of %s: %v", jid, err) | ||||
| 			} else { | ||||
| 				b.Lock() | ||||
| 				b.userAvatars[jid] = info.URL | ||||
| 				b.Unlock() | ||||
| 			} | ||||
| 	for jid := range b.users { | ||||
| 		info, err := b.GetProfilePicThumb(jid) | ||||
| 		if err != nil { | ||||
| 			b.Log.Warnf("Could not get profile photo of %s: %v", jid, err) | ||||
| 		} else { | ||||
| 			b.Lock() | ||||
| 			b.userAvatars[jid] = info.URL | ||||
| 			b.Unlock() | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 		b.Log.Debug("Finished getting avatars..") | ||||
| 	}() | ||||
| 	b.Log.Info("Finished getting avatars..") | ||||
| 	//	}() | ||||
| 
 | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Wim
						Wim