Procházet zdrojové kódy

fix: duplicate downloading of remote config (#6544)

bubble
Aleksandr Zhuravlev před 3 roky
committed by GitHub
rodič
revize
50e5f653cc
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 8 přidání a 8 odebrání
  1. +8
    -8
      src/core/index.js

+ 8
- 8
src/core/index.js Zobrazit soubor

@@ -177,15 +177,15 @@ export default function SwaggerUI(opts) {

const configUrl = queryConfig.config || constructorConfig.configUrl

if (!configUrl || !system.specActions || !system.specActions.getConfigByUrl || system.specActions.getConfigByUrl && !system.specActions.getConfigByUrl({
url: configUrl,
loadRemoteConfig: true,
requestInterceptor: constructorConfig.requestInterceptor,
responseInterceptor: constructorConfig.responseInterceptor,
}, downloadSpec)) {
return downloadSpec()
if (configUrl && system.specActions && system.specActions.getConfigByUrl) {
system.specActions.getConfigByUrl({
url: configUrl,
loadRemoteConfig: true,
requestInterceptor: constructorConfig.requestInterceptor,
responseInterceptor: constructorConfig.responseInterceptor,
}, downloadSpec)
} else {
system.specActions.getConfigByUrl(configUrl, downloadSpec)
return downloadSpec()
}

return system


Načítá se…
Zrušit
Uložit