Skip to content

Commit

Permalink
Fix option variable
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Nov 28, 2020
1 parent 8d47178 commit b653c5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2] - 2020-11-28

### Fixed
- Fix option variable.

## [0.5.0] - 2020-11-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion service/telegram/telegram.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (c *collect) archive(t *telegram, msgid int, urls []string) (int, error) {
p := *c

wg := sync.WaitGroup{}
var wbrc wayback.Broker = &wayback.Handle{URLs: urls}
var wbrc wayback.Broker = &wayback.Handle{URLs: urls, Opts: t.opts}
for slot, do := range t.opts.Slots() {
wg.Add(1)
go func(slot string, do bool, c *collect) {
Expand Down

0 comments on commit b653c5c

Please sign in to comment.