File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
app/java/net/openid/appauthdemo Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ private void readConfiguration() throws InvalidConfigurationException {
192192 Buffer configData = new Buffer ();
193193 try {
194194 configSource .readAll (configData );
195+ mConfigHash = configData .sha256 ().base64 ();
195196 mConfigJson = new JSONObject (configData .readString (Charset .forName ("UTF-8" )));
196197 } catch (IOException ex ) {
197198 throw new InvalidConfigurationException (
@@ -201,7 +202,6 @@ private void readConfiguration() throws InvalidConfigurationException {
201202 "Unable to parse configuration: " + ex .getMessage ());
202203 }
203204
204- mConfigHash = configData .sha256 ().base64 ();
205205 mClientId = getConfigString ("client_id" );
206206 mScope = getRequiredConfigString ("authorization_scope" );
207207 mRedirectUri = getRequiredConfigUri ("redirect_uri" );
You can’t perform that action at this time.
0 commit comments