Skip to content

Commit

Permalink
fix the pad link
Browse files Browse the repository at this point in the history
  • Loading branch information
riddler committed Oct 30, 2015
1 parent eb22b16 commit ed5371a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ var filename = '';

var meeting_time = moment().format('hh:mm A');
var meeting_date = moment().format('DD MMM YY');
var meeting_link ='https://public.etherpad-mozilla.org/kerala-'+ moment().format('DDMMMYY');
var meeting_link ='https://public.etherpad-mozilla.org/p/kerala-'+ moment().format('DDMMMYY');
var meeting_logs =' logs.mozillakerala.org/'+ moment().format('DDMMMYY');
var wstream;


filename = './logs/' + moment().format('DDMMMYY') + '.txt';
console.log(filename);

wstream = fs.createWriteStream(filename, options);

//options for logging
var options = {
Expand All @@ -23,7 +23,6 @@ var options = {
};


wstream = fs.createWriteStream(filename, options);

//reading meeting status in sync
var meeting_status = fs.readFileSync('./mod', 'ascii');
Expand Down Expand Up @@ -143,7 +142,7 @@ function startmeeting(from) {

meeting_time = moment().format('hh:mm A');
meeting_date = moment().format('DD MMM YY');
meeting_link ='https://public.etherpad-mozilla.org/kerala-' + moment().format('DDMMMYY');
meeting_link ='https://public.etherpad-mozilla.org/p/kerala-' + moment().format('DDMMMYY');



Expand Down

0 comments on commit ed5371a

Please sign in to comment.