xmrig-proxy icon indicating copy to clipboard operation
xmrig-proxy copied to clipboard

Small bug in base/net/http/Http.h

Open lano1106 opened this issue 4 years ago • 0 comments

inline bool isAuthRequired() const { return !m_restricted || !m_token.isNull(); }

should be

inline bool isAuthRequired() const { return m_restricted || !m_token.isNull(); }

Auth is required if m_restricted is true.

Greetings,

lano1106 avatar Jan 09 '21 16:01 lano1106