hotfix final
This commit is contained in:
@@ -42,7 +42,7 @@ while True:
|
|||||||
if button:
|
if button:
|
||||||
print("Clicking on the 'Next' button...")
|
print("Clicking on the 'Next' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/start_burp.png", confidence=0.8)
|
button = pyautogui.locateCenterOnScreen("/app/burp/start_burp.png", confidence=0.8)
|
||||||
@@ -51,7 +51,7 @@ while True:
|
|||||||
if button:
|
if button:
|
||||||
print("Clicking on the 'Start Burp' button...")
|
print("Clicking on the 'Start Burp' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/accept.png", confidence=0.8)
|
button = pyautogui.locateCenterOnScreen("/app/burp/accept.png", confidence=0.8)
|
||||||
@@ -60,7 +60,7 @@ while True:
|
|||||||
if button:
|
if button:
|
||||||
print("Clicking on the 'Accept' button...")
|
print("Clicking on the 'Accept' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/proxy.png", confidence=0.8)
|
button = pyautogui.locateCenterOnScreen("/app/burp/proxy.png", confidence=0.8)
|
||||||
@@ -69,7 +69,7 @@ while True:
|
|||||||
if button and not proxy_clicked:
|
if button and not proxy_clicked:
|
||||||
print("Clicking on the 'Proxy' button...")
|
print("Clicking on the 'Proxy' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
proxy_clicked = True
|
proxy_clicked = True
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -79,7 +79,7 @@ while True:
|
|||||||
if button and not history_clicked:
|
if button and not history_clicked:
|
||||||
print("Clicking on the 'HTTP History' button...")
|
print("Clicking on the 'HTTP History' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
history_clicked = True
|
history_clicked = True
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.99)
|
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.99)
|
||||||
@@ -89,4 +89,4 @@ while True:
|
|||||||
sort_clicked = True
|
sort_clicked = True
|
||||||
print("Clicking on the 'Sorting' button...")
|
print("Clicking on the 'Sorting' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
|
|||||||
21
src/api.rs
21
src/api.rs
@@ -248,17 +248,18 @@ async fn status(req: HttpRequest) -> Result<impl web::Responder, web::Error> {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
nsfw: true,
|
nsfw: true,
|
||||||
});status.add_channel(Channel {
|
|
||||||
id: "erothots".to_string(),
|
|
||||||
name: "Erothots".to_string(),
|
|
||||||
description: "Free Onlyfans Content".to_string(),
|
|
||||||
premium: false,
|
|
||||||
favicon: "https://www.google.com/s2/favicons?sz=64&domain=erothots.co".to_string(),
|
|
||||||
status: "active".to_string(),
|
|
||||||
categories: vec![],
|
|
||||||
options: vec![],
|
|
||||||
nsfw: true,
|
|
||||||
});
|
});
|
||||||
|
// status.add_channel(Channel {
|
||||||
|
// id: "erothots".to_string(),
|
||||||
|
// name: "Erothots".to_string(),
|
||||||
|
// description: "Free Onlyfans Content".to_string(),
|
||||||
|
// premium: false,
|
||||||
|
// favicon: "https://www.google.com/s2/favicons?sz=64&domain=erothots.co".to_string(),
|
||||||
|
// status: "active".to_string(),
|
||||||
|
// categories: vec![],
|
||||||
|
// options: vec![],
|
||||||
|
// nsfw: true,
|
||||||
|
// });
|
||||||
status.add_channel(Channel {
|
status.add_channel(Channel {
|
||||||
id: "spankbang".to_string(),
|
id: "spankbang".to_string(),
|
||||||
name: "Work in Progress - SpankBang".to_string(),
|
name: "Work in Progress - SpankBang".to_string(),
|
||||||
|
|||||||
Reference in New Issue
Block a user