Skip to content

Commit

Permalink
[mirotalksfu] - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jun 8, 2023
1 parent 92279d4 commit ef4974a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/src/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if (sentryEnabled) {
integrations: [
new CaptureConsole({
// ['log', 'info', 'warn', 'error', 'debug', 'assert']
levels: ['warn', 'error'],
levels: ['error'],
}),
],
tracesSampleRate: sentryTracesSampleRate,
Expand Down Expand Up @@ -1009,7 +1009,7 @@ function startServer() {
cb(response);
} catch (error) {
if (error.response) {
log.error('ChatGPT', error.response);
log.error('ChatGPT', error.response.data);
cb(error.response.data.error.message);
} else {
log.error('ChatGPT', error.message);
Expand Down
2 changes: 1 addition & 1 deletion app/src/XSS.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const checkXSS = (dataObject) => {
log.debug('XSS String sanitization done');
return xss(dataObject);
}
log.debug('XSS not sanitized', dataObject);
log.warn('XSS not sanitized', dataObject);
return dataObject;
} catch (error) {
log.error('XSS error', { data: dataObject, error: error });
Expand Down
2 changes: 1 addition & 1 deletion public/css/VideoGrid.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ video {
}

video:hover {
opacity: 0.8;
opacity: 0.9;
}

video:fullscreen {
Expand Down

0 comments on commit ef4974a

Please sign in to comment.