[REGRESSION] HTTP Basic Auth (#2490)
This commit is contained in:
parent
60dc128c63
commit
101aad4956
|
@ -1,6 +1,9 @@
|
||||||
import { InteractionManager } from 'react-native';
|
import { InteractionManager } from 'react-native';
|
||||||
import semver from 'semver';
|
import semver from 'semver';
|
||||||
import { Rocketchat as RocketchatClient } from '@rocket.chat/sdk';
|
import {
|
||||||
|
Rocketchat as RocketchatClient,
|
||||||
|
settings as RocketChatSettings
|
||||||
|
} from '@rocket.chat/sdk';
|
||||||
import { Q } from '@nozbe/watermelondb';
|
import { Q } from '@nozbe/watermelondb';
|
||||||
import AsyncStorage from '@react-native-community/async-storage';
|
import AsyncStorage from '@react-native-community/async-storage';
|
||||||
import RNFetchBlob from 'rn-fetch-blob';
|
import RNFetchBlob from 'rn-fetch-blob';
|
||||||
|
@ -111,7 +114,7 @@ const RocketChat = {
|
||||||
},
|
},
|
||||||
async getServerInfo(server) {
|
async getServerInfo(server) {
|
||||||
try {
|
try {
|
||||||
const response = await RNFetchBlob.fetch('GET', `${ server }/api/info`);
|
const response = await RNFetchBlob.fetch('GET', `${ server }/api/info`, { ...RocketChatSettings.customHeaders });
|
||||||
try {
|
try {
|
||||||
// Try to resolve as json
|
// Try to resolve as json
|
||||||
const jsonRes = response.json();
|
const jsonRes = response.json();
|
||||||
|
|
Loading…
Reference in New Issue