Skip to content
Snippets Groups Projects
Commit 4cc874c9 authored by Taras's avatar Taras
Browse files

v 1.5.11.4

parent 8da93cd0
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ apply plugin: 'maven-publish' ...@@ -3,7 +3,7 @@ apply plugin: 'maven-publish'
def groupIdString = "org.matrix.android" def groupIdString = "org.matrix.android"
def artifactIdString = "matrix-sdk-android" def artifactIdString = "matrix-sdk-android"
def versionName = "1.5.11.3" def versionName = "1.5.11.4"
def artifactPath = "$buildDir/outputs/aar/$artifactIdString-release.aar" def artifactPath = "$buildDir/outputs/aar/$artifactIdString-release.aar"
def publicationName = "release" def publicationName = "release"
def projectId = "16" def projectId = "16"
......
...@@ -58,6 +58,6 @@ data class Credentials( ...@@ -58,6 +58,6 @@ data class Credentials(
@Json(name = "well_known") val discoveryInformation: DiscoveryInformation? = null @Json(name = "well_known") val discoveryInformation: DiscoveryInformation? = null
) )
internal fun Credentials.sessionId(): String { fun Credentials.sessionId(): String {
return (if (deviceId.isNullOrBlank()) userId else "$userId|$deviceId").md5() return (if (deviceId.isNullOrBlank()) userId else "$userId|$deviceId").md5()
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment