Skip to content

Commit

Permalink
chore: update channel_id to point to the right channel
Browse files Browse the repository at this point in the history
  • Loading branch information
2205u committed Jun 23, 2024
1 parent efeb5ea commit 0caf6d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ impl EventHandler for Bot {
if let Err(e) = msg.channel_id.say(&ctx.http, "amFOSS Daemon is up and running!").await {
error!("ERROR: Could not send message: {:?}.", e);
}
}
}
}

async fn ready(&self, ctx: Context, ready: Ready) {
Expand All @@ -51,7 +51,7 @@ async fn send_presense_report(ctx: Context) {
let kolkata_now = chrono::Utc::now().with_timezone(&chrono_tz::Asia::Kolkata);


const THE_LAB_CHANNEL_ID: u64 = 1252600949164474391;
const THE_LAB_CHANNEL_ID: u64 = 1208438766893670451;
let channel_id = serenity::model::id::ChannelId::new(THE_LAB_CHANNEL_ID);

if kolkata_now.hour() == 18 && kolkata_now.minute() == 00 {
Expand Down

0 comments on commit 0caf6d9

Please sign in to comment.