diff --git a/includes/class-simple-local-avatars.php b/includes/class-simple-local-avatars.php
index 16ed153..7805830 100644
--- a/includes/class-simple-local-avatars.php
+++ b/includes/class-simple-local-avatars.php
@@ -332,7 +332,7 @@ public function get_user_id( $id_or_email ) {
 	 * @param int $user_id User ID.
 	 * @return array Array with avatar data.
 	 */
-	public static function get_user_local_avatar( $user ) {
+	public function get_user_local_avatar( $user_id ) {
 		$local_avatars = get_user_meta( $user_id, $this->user_key, true );
 		if ( ! is_array( $local_avatars ) || empty( $local_avatars ) ) {
 			return [];
@@ -357,7 +357,7 @@ public function get_simple_local_avatar_url( $id_or_email, $size ) {
 		}
 
 		// Fetch local avatar from meta and make sure it's properly set.
-		$local_avatars = self::get_user_local_avatar( $user_id );
+		$local_avatars = $this->get_user_local_avatar( $user_id );
 		if ( empty( $local_avatars['full'] ) ) {
 			return '';
 		}
@@ -493,7 +493,7 @@ public function get_simple_local_avatar_alt( $id_or_email ) {
 		}
 
 		// Fetch local avatar from meta and make sure we have a media ID.
-		$local_avatars = get_user_meta( $user_id, 'simple_local_avatar', true );
+		$local_avatars = $this->get_user_local_avatar( $user_id );
 		if ( empty( $local_avatars['media_id'] ) ) {
 			$alt = '';
 			// If no avatar is set, check if we are using a default avatar with alt text.
@@ -1125,7 +1125,7 @@ public function edit_user_profile_update( $user_id ) {
 		endif;
 
 		// Handle ratings
-		if ( isset( $avatar_id ) || get_user_meta( $user_id, $this->user_key, true ) ) {
+		if ( isset( $avatar_id ) || ! empty( $this->get_user_local_avatar( $user_id ) ) ) {
 			if ( empty( $_POST['simple_local_avatar_rating'] ) || ! array_key_exists( $_POST['simple_local_avatar_rating'], $this->avatar_ratings ) ) {
 				$_POST['simple_local_avatar_rating'] = key( $this->avatar_ratings );
 			}
@@ -1195,7 +1195,7 @@ public function ajax_assign_simple_local_avatar_media() {
 	 * @param int $user_id User ID.
 	 */
 	public function avatar_delete( $user_id ) {
-		$old_avatars = self::get_user_local_avatar( $user_id );
+		$old_avatars = $this->get_user_local_avatar( $user_id );
 
 		if ( empty( $old_avatars ) ) {
 			return;
@@ -1286,7 +1286,7 @@ public function register_rest_fields() {
 	 * @param object $user User object
 	 */
 	public function get_avatar_rest( $user ) {
-		$local_avatar = get_user_meta( $user['id'], $this->user_key, true );
+		$local_avatar = $this->get_user_local_avatar( $user['id'] );
 		if ( empty( $local_avatar ) ) {
 			return;
 		}
@@ -1411,7 +1411,7 @@ public function sla_clear_user_cache() {
 		if ( ! empty( $users ) ) {
 			foreach ( $users as $user ) {
 				$user_id       = $user->ID;
-				$local_avatars = get_user_meta( $user_id, 'simple_local_avatar', true );
+				$local_avatars = $this->get_user_local_avatar( $user_id );
 				$media_id      = isset( $local_avatars['media_id'] ) ? $local_avatars['media_id'] : '';
 				$this->clear_user_avatar_cache( $local_avatars, $user_id, $media_id );
 			}