Skip to content

Commit

Permalink
Update log.service.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Nov 12, 2023
1 parent e671ae4 commit dc3ed22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/core/log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class LogService {
// subscribe to incoming data events from server to client
this.io.socket.on('stdout', (data: string) => {
if (this.pluginName) {
const lines = data.split('\r\n');
const lines = data.split('\n');
let includeNextLine = false;

lines.forEach((line) => {
Expand Down

0 comments on commit dc3ed22

Please sign in to comment.