Bot admins in env file #22

Merged
modulatingforce merged 7 commits from haru_test into master 2024-04-09 13:48:55 -04:00
Showing only changes of commit 4b849cfed6 - Show all commits

View file

@ -15,21 +15,9 @@ use dotenv::dotenv;
use std::env;
fn adminvector() -> Vec<String> {
// vec![String::from("ModulatingForce")]
// //vec![]
dotenv().ok();
let mut admins = Vec::new();
// for admin in env::var("bot_admins").unwrap().split(',') {
// admins.push(String::from(admin))
// }
// 03.17 - Forcen - Suggesting below instead :
/*
- this will push only if env::var() returns Ok() ;
otherwise (like in Err(_)) do nothing
*/
if let Ok(value) = env::var("bot_admins") {
for admin in value.split(',') {
admins.push(String::from(admin))