Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0dbdb05 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix hash function in BluetoothLeAudioContentMetadata"

parents 619f5fa9 c8d973d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ public final class BluetoothLeAudioContentMetadata implements Parcelable {

    @Override
    public int hashCode() {
        return Objects.hash(mProgramInfo, mLanguage, mRawMetadata);
        return Objects.hash(mProgramInfo, mLanguage, Arrays.hashCode(mRawMetadata));
    }

    /**