mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 01:15:43 +00:00
Refactor SnodeApi
This commit is contained in:
parent
b93ec3be04
commit
482f169df1
@ -63,7 +63,6 @@ data class ConfigurationSyncJob(val destination: Destination): Job {
|
|||||||
// return a list of batch request objects
|
// return a list of batch request objects
|
||||||
val snodeMessage = MessageSender.buildConfigMessageToSnode(destination.destinationPublicKey(), message)
|
val snodeMessage = MessageSender.buildConfigMessageToSnode(destination.destinationPublicKey(), message)
|
||||||
val authenticated = SnodeAPI.buildAuthenticatedStoreBatchInfo(
|
val authenticated = SnodeAPI.buildAuthenticatedStoreBatchInfo(
|
||||||
destination.destinationPublicKey(),
|
|
||||||
config.configNamespace(),
|
config.configNamespace(),
|
||||||
snodeMessage
|
snodeMessage
|
||||||
) ?: return@map null // this entry will be null otherwise
|
) ?: return@map null // this entry will be null otherwise
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,7 @@
|
|||||||
package org.session.libsignal.utilities;
|
package org.session.libsignal.utilities;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Encodes and decodes to and from Base64 notation.</p>
|
* <p>Encodes and decodes to and from Base64 notation.</p>
|
||||||
* <p>Homepage: <a href="http://iharder.net/base64">http://iharder.net/base64</a>.</p>
|
* <p>Homepage: <a href="http://iharder.net/base64">http://iharder.net/base64</a>.</p>
|
||||||
@ -714,7 +716,7 @@ public class Base64
|
|||||||
* @throws NullPointerException if source array is null
|
* @throws NullPointerException if source array is null
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public static String encodeBytes( byte[] source ) {
|
public static String encodeBytes(@NonNull byte[] source ) {
|
||||||
// Since we're not going to have the GZIP encoding turned on,
|
// Since we're not going to have the GZIP encoding turned on,
|
||||||
// we're not going to have an java.io.IOException thrown, so
|
// we're not going to have an java.io.IOException thrown, so
|
||||||
// we should not force the user to have to catch it.
|
// we should not force the user to have to catch it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user