diff --git a/VERSION.properties b/VERSION.properties index 170f393a..7a5c2398 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.11.1 +client.version=1.11.2 server.version=1.9.0 diff --git a/shine-UI/js/pages/messages-list.js b/shine-UI/js/pages/messages-list.js index 6c4f8b90..d92fb8d1 100644 --- a/shine-UI/js/pages/messages-list.js +++ b/shine-UI/js/pages/messages-list.js @@ -22,6 +22,12 @@ const SVG_CHEVRON = ` `; +const RELATION_ORDER = new Map([ + ['close_friend', 0], + ['friend', 1], + ['contact', 2], + ['none', 99], +]); const DM_BLOB_PREVIEW_CACHE = new Map(); const DM_BLOB_PREVIEW_PENDING = new Map(); function normalizeRelationFlag(value) {