There are probably a handful of keys which could be detected by swapping blocks in an authenticated message that is a few tens of millions of blocks long. There's also the trivial zero weak key and the trivial 1 key.
Recall that the Poly1305 MAC additive is calculated as
$$\left(\sum_i c_i r^i\pmod{2^{130}-5}\right)\pmod{2^{128}}$$
where $c_i$ is a mild funging of the message block and $r$ is the MAC key. Clearly if $r=0$ then the additive is always zero. This is trivial to detect as any modification of the message will still authenticate. If $r=1$, swapping any $c_i$ and $c_j$ would not change the additive. Swapping two message blocks will achieve this provided that neither is the final message block.
Likewise, if $r\equiv -1\pmod{2^{130}-5}$ (corresponding to the subgroup of order 2), then swapping $c_i$ and $c_j$ where $i$ and $j$ have the same parity would not change the additive Swapping blocks $m_i$ and $m_j$ will achieve this provided that neither is the final block. However this $r$ cannot occur as a Poly1305 key as its binary expression is 11111111....11010 and Poly1305 keys are required to have zero bits in positions 28, 29, 30, 31, 32, 33, 60, 61, 62, 63, 64, 65, 66, 92, 93, 94, 95, 96, 97, 124, 125, 126, 127, 128, and 129 (note that this is an approximately $2^{-24}$ condition on elements mod $2^{130}-5$).
Writing $p=2^{130}-5$ and noting that 2 is a primitive root mod $p$, we write $\omega_{23}\equiv 2^{(p-1)/23}\pmod p$ and the powers of $\omega_{23}$ are all of order 23. Swapping $c_i$ and $c_j$ where are $i$ and $j$ are congruent mod 23 will not change the additive when $r\equiv\omega_{23}^k$ for some $k$ giving another 23 possible weak keys. However, none of these keys is likely to satisfy the bit conditions for $r$ (I have not checked). Ditto for another 23 keys of order 46.
However, if we write $\omega_{32985101}\equiv 2^{(p-1)/32985101}\pmod p$, swapping $c_i$ and $c_j$ where are $i$ and $j$ are congruent mod 32985101 will not change the additive when $r\equiv\omega_{32985101}^k$ for some $k$ and this is a much larger family of potential weak keys of which half a dozen are so will likely match the constraints on $r$ (I've not done the search, but it is straightforward). Messages of over $2^{25}$ blocks are not inconceivable.
There are likely to also be a few more keys corresponding to elements of order $2\times 32985101$, $23\times 32985101$ and $46\times 32985101$. Elements where 897064739519922787230182993783 divides their order also theoretically correspond to other weak keys, but message lengths of around $2^{100}$ blocks are unrealistic and should likely be avoided for other reasons.