Skip to content

Commit

Permalink
fixing #53
Browse files Browse the repository at this point in the history
  • Loading branch information
FBoucher committed Jan 27, 2021
1 parent 184dbc6 commit 75e8988
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/public/cloudbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,28 +685,28 @@ StreamNoteStart = async function(projectName)
StreamNoteStop = function()
{
SaveToFile();
let _streamSessions = Generate_streamSessions();
//console.log('Notes: ', _streamSessions);
SaveNotesToFile(_streamSessions);
let streamNotes = Generate_streamSessions();
//console.log('Notes: ', streamNotes);
SaveNotesToFile(streamNotes);
}


Generate_streamSessions = function()
{
let _streamSession = "";
let streamNotes = "";

//Project detail
_streamSession += GenerateSessiontInfo();
streamNotes += GenerateSessiontInfo();

// Stream Details
_streamSession += GenerateTimeLogSection();
streamNotes += GenerateTimeLogSection();

// Cloudies info
_streamSession += GenerateCloudiesInfo();
streamNotes += GenerateCloudiesInfo();

// Goal extra
_streamSession += GenerateExtraInfo();
return _streamSession;
streamNotes += GenerateExtraInfo();
return streamNotes;
}


Expand Down

0 comments on commit 75e8988

Please sign in to comment.