Commit cff279b6 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Desbloquea get de config en caso de error

En caso de obtener error, quita también el flag de petición en curso.

Corrige sintaxis.
parent 0071100f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ define([

		_setOwnCallbacksForEvents: function() {

			this._onEvt('GOT_EXTERNAL_CONFIG', lang.hitch(this._onGotExternalConfig))
			this._onEvt('GOT_EXTERNAL_CONFIG', lang.hitch(this._onGotExternalConfig));
		},

		postCreate: function() {
+2 −0
Original line number Diff line number Diff line
@@ -171,6 +171,8 @@ define([

		_errorAvailable: function(err) {

			this._gettingExternalConfig = false;

			this._emitEvt('REQUEST_FAILED', err);
		}
	});