mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Compare commits
No commits in common. "8819b4031acaf7fdeac102dfc1e1fbd1ff5539c5" and "b1ceb29bfb03f65bc0ca0807895cded9440b9a3f" have entirely different histories.
8819b4031a
...
b1ceb29bfb
4 changed files with 5 additions and 12 deletions
|
@ -31,11 +31,11 @@ linters:
|
|||
- bodyclose # checks whether HTTP response body is closed successfully [fast: true, auto-fix: false]
|
||||
- containedctx # containedctx is a linter that detects struct contained context.Context field [fast: true, auto-fix: false]
|
||||
- contextcheck # check the function whether use a non-inherited context [fast: false, auto-fix: false]
|
||||
- copyloopvar # copyloopvar is a linter detects places where loop variables are copied [fast: true, auto-fix: false]
|
||||
- dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f()) [fast: true, auto-fix: false]
|
||||
- durationcheck # check for two durations multiplied together [fast: false, auto-fix: false]
|
||||
- errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases [fast: false, auto-fix: false]
|
||||
- errchkjson # Checks types passed to the json encoding functions. Reports unsupported types and optionally reports occations, where the check for the returned error can be omitted. [fast: false, auto-fix: false]
|
||||
- exportloopref # checks for pointers to enclosing loop variables [fast: true, auto-fix: false]
|
||||
- forbidigo # Forbids identifiers [fast: true, auto-fix: false]
|
||||
- funlen # Tool for detection of long functions [fast: true, auto-fix: false]
|
||||
- gocognit # Computes and checks the cognitive complexity of functions [fast: true, auto-fix: false]
|
||||
|
|
|
@ -1,10 +1,3 @@
|
|||
# 3.33.2 / 2024-08-27
|
||||
|
||||
* Bugfixes
|
||||
* [overlays] Fix KoFi donation currency in eventfeed
|
||||
* [raffle] Lint: Ignore linter false-positive
|
||||
* [CI] Lint: Replace deprecated linter
|
||||
|
||||
# 3.33.1 / 2024-08-14
|
||||
|
||||
* Bugfixes
|
||||
|
|
|
@ -345,11 +345,11 @@ const app = createApp({
|
|||
handleKoFiDonation(eventId, data, time) {
|
||||
let text
|
||||
if (data.isSubscription && data.isFirstSubPayment) {
|
||||
text = `${data.from} just started a monthly subscription of ${Number(data.amount).toFixed(2)} ${data.currency}`
|
||||
text = `${data.from} just started a monthly subscription of ${Number(data.amount).toFixed(2)}€`
|
||||
} else if (data.isSubscription && !data.isFirstSubPayment) {
|
||||
text = `${data.from} continued their monthly subscription of ${Number(data.amount).toFixed(2)} ${data.currency}`
|
||||
text = `${data.from} continued their monthly subscription of ${Number(data.amount).toFixed(2)}€`
|
||||
} else {
|
||||
text = `${data.from} just donated ${Number(data.amount).toFixed(2)} ${data.currency}`
|
||||
text = `${data.from} just donated ${Number(data.amount).toFixed(2)}€`
|
||||
}
|
||||
|
||||
this.addEvent({
|
||||
|
|
|
@ -57,7 +57,7 @@ func (cryptRandSrc) Int63() int64 {
|
|||
return -1
|
||||
}
|
||||
// mask off sign bit to ensure positive number
|
||||
return int64(binary.LittleEndian.Uint64(b[:]) & (1<<63 - 1)) //#nosec:G115 - Masking ensures conversion is fine
|
||||
return int64(binary.LittleEndian.Uint64(b[:]) & (1<<63 - 1))
|
||||
}
|
||||
|
||||
// We're using a non-seedable source
|
||||
|
|
Loading…
Reference in a new issue