Index: src/bp-core/bp-core-avatars.php
===================================================================
--- src/bp-core/bp-core-avatars.php
+++ src/bp-core/bp-core-avatars.php
@@ -1400,6 +1400,11 @@
 	$args['item_id'] = $user->ID;
 	$args['html']    = false;
 
+	// Use the 'full' type if size is larger than BP's thumb width.
+	if ( (int) $args['size'] > bp_core_avatar_thumb_width() ) {
+		$args['type'] = 'full';
+	}
+
 	// Get the BuddyPress avatar URL.
 	if ( $bp_avatar = bp_core_fetch_avatar( $args ) ) {
 		return $bp_avatar;
