perf: avoid perm checks from background jobs
diff --git a/erpnext/crm/doctype/social_media_post/social_media_post.py b/erpnext/crm/doctype/social_media_post/social_media_post.py
index 55db29a..3654d29 100644
--- a/erpnext/crm/doctype/social_media_post/social_media_post.py
+++ b/erpnext/crm/doctype/social_media_post/social_media_post.py
@@ -74,7 +74,7 @@
 
 
 def process_scheduled_social_media_posts():
-	posts = frappe.get_list(
+	posts = frappe.get_all(
 		"Social Media Post",
 		filters={"post_status": "Scheduled", "docstatus": 1},
 		fields=["name", "scheduled_time"],