From 2e0b68ea42b24249cd7d0a0036981995a2236a01 Mon Sep 17 00:00:00 2001 From: Kelvin <kelvin@revodux.com> Date: Fri, 18 Aug 2023 17:33:24 +0200 Subject: [PATCH] Swap ordering --- app/src/main/java/com/futo/polycentric/core/Claims.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/futo/polycentric/core/Claims.kt b/app/src/main/java/com/futo/polycentric/core/Claims.kt index db265d8..72ba2dd 100644 --- a/app/src/main/java/com/futo/polycentric/core/Claims.kt +++ b/app/src/main/java/com/futo/polycentric/core/Claims.kt @@ -11,8 +11,8 @@ class Claims { fun youtube(internalId: String, handle: String): Protocol.Claim { return claim(ClaimType.YOUTUBE.value, mapOf( - 0L to internalId, - 1L to handle + 0L to handle, + 1L to internalId )) } -- GitLab