Skip to content

Commit

Permalink
Fix Track title Metadta Field (#179)
Browse files Browse the repository at this point in the history
* Use track's title instead of sanitized 'name' in mutagen metadata

* Bump docker/login-action from 3.1.0 to 3.2.0 (#178)

Bumps [docker/login-action](https://github.com/docker/login-action) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@e92390c...0d4c9c5)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
ebb-earl-co and dependabot[bot] committed Jun 3, 2024
1 parent 198292b commit 0c70ded
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [
"m3u8==5.0.0",
"platformdirs==4.2.2",
"pycryptodome==3.20.0",
"requests[socks]==2.32.2",
"requests[socks]==2.32.3",
"typer==0.12.3"
]
[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ mutagen==1.47.0
m3u8==5.0.0
platformdirs==4.2.2
pycryptodome==3.20.0
requests[socks]==2.32.2
requests[socks]==2.32.3
typer==0.12.3
2 changes: 1 addition & 1 deletion tidal_wave/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def craft_tags(self):
tags[tag_map["date"]] = str(self.album.release_date)
tags[tag_map["isrc"]] = self.metadata.isrc
tags[tag_map["media"]] = "Digital Media"
tags[tag_map["title"]] = self.metadata.name
tags[tag_map["title"]] = self.metadata.title
tags[tag_map["track_peak_amplitude"]] = f"{self.metadata.peak}"
tags[tag_map["track_peak_amplitude"]] = (
f"{self.metadata.peak}" if self.metadata.peak is not None else None
Expand Down

0 comments on commit 0c70ded

Please sign in to comment.