remove useless password
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
ycc
2026-02-28 19:01:49 +01:00
parent aa91d2cc0f
commit 67823237e6

View File

@@ -109,7 +109,8 @@ func ReadAckMessageResponse() {
// - job.Queue = peer UID (used to look up the peer and its DB files)
// - job.File = a path whose basename without extension is the message's
// SQLite row ID as a decimal integer (e.g. "42.bin")
func ProcessSentMessages(storagePath, password string) int {
func ProcessSentMessages(storagePath string) int {
password, _ := client.GetConfig().GetMemPass()
queueDir := filepath.Join(storagePath, "queues")
entries, err := os.ReadDir(queueDir)
if err != nil {