this post was submitted on 23 Mar 2025
93 points (100.0% liked)

Canada

9426 readers
1663 users here now

What's going on Canada?



Related Communities


🍁 Meta


🗺️ Provinces / Territories


🏙️ Cities / Local Communities

Sorted alphabetically by city name.


🏒 SportsHockey

Football (NFL): incomplete

Football (CFL): incomplete

Baseball

Basketball

Soccer


💻 Schools / Universities

Sorted by province, then by total full-time enrolment.


💵 Finance, Shopping, Sales


🗣️ Politics


🍁 Social / Culture


Rules

  1. Keep the original title when submitting an article. You can put your own commentary in the body of the post or in the comment section.

Reminder that the rules for lemmy.ca also apply here. See the sidebar on the homepage: lemmy.ca


founded 4 years ago
MODERATORS
93
Elbows Up eh! (www.youtube.com)
submitted 2 weeks ago* (last edited 2 weeks ago) by Lemmyoutofhere@lemmy.ca to c/canada@lemmy.ca
you are viewing a single comment's thread
view the rest of the comments
[–] jerkface@lemmy.ca 9 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

URLs that link to "youtu.be" include tracking bugs. Don't share such links. This is the correct URL: https://www.youtube.com/watch?v=al9yWA4TUII ... but it's propaganda, anyway

[–] Lemmyoutofhere@lemmy.ca 2 points 2 weeks ago

Thank you. Edited.

[–] HonoredMule@lemmy.ca 1 points 2 weeks ago

You can use the shorter .be url -- just only copy up to (not including) the question mark.

If you're disinclined to endure any inconvenience, you can put this in a userscript to strip the tracking code automatically (including what the copy button saves):

const listener = new MutationObserver((mutations, observer) => {
    // query blindly until found - it's never listed as an addedNode
    const field = document.querySelector("#share-url");
    if(!field) return;
    field.value = field.value.split("?")[0];
    // SPA and navigation events/functions not catching anything, so just listen forever :/
    // listener.disconnect();
});
listener.observe(document.body, {childList: true, subtree: true});