mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-22 13:45:16 +00:00
Fix clippy warnings
This commit is contained in:
@@ -13,7 +13,7 @@ pub fn get_auth_cookie() -> Option<String> {
|
||||
let entry: String = cookies.get_value(".ROBLOSECURITY").ok()?;
|
||||
let mut cookie = None;
|
||||
|
||||
for kv_pair in entry.split(",") {
|
||||
for kv_pair in entry.split(',') {
|
||||
let mut pieces = kv_pair.split("::");
|
||||
|
||||
if let Some("COOK") = pieces.next() {
|
||||
|
||||
Reference in New Issue
Block a user