diff --git wp-includes/meta.php wp-includes/meta.php
index 2332d9b5af..c797ce5397 100644
--- wp-includes/meta.php
+++ wp-includes/meta.php
@@ -207,7 +207,7 @@ function update_metadata( $meta_type, $object_id, $meta_key, $meta_value, $prev_
 	// Compare existing value to new value if no prev value given and the key exists only once.
 	if ( empty( $prev_value ) ) {
 		$old_value = get_metadata( $meta_type, $object_id, $meta_key );
-		if ( count( $old_value ) == 1 ) {
+		if ( is_array( $old_value ) && count( $old_value ) === 1 ) {
 			if ( $old_value[0] === $meta_value ) {
 				return false;
 			}
